csc-python-solutions/07/c/3 - Square Census.py
2021-02-18 19:05:22 +01:00

6 lines
62 B
Python

n=int(input())
c = 1
while c**2 < n:
print(c**2)
c += 1