Create 3 - Square Census.py

This commit is contained in:
Lukas Baumann 2021-02-18 19:05:22 +01:00 committed by GitHub
parent 38601c2629
commit 14143af154
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,5 @@
n=int(input())
c = 1
while c**2 < n:
print(c**2)
c += 1