print("Row 1/tRow 2") for i in range(1, 101): if (i + 1) % 6 == 0: #every fifth number print(f"{i:<8}{0:<8}") else: print(f"{i:<8}{i+0:<8}")