6 lines
62 B
Python
6 lines
62 B
Python
n=int(input())
|
|
c = 1
|
|
while c**2 < n:
|
|
print(c**2)
|
|
c += 1
|