n = int(input("Enter a number of rows: "))
for i in range(1, n+1):
for j in range(1, (i*2), 2):
print(j, end="")
print()
Comments
Post a Comment