mirror of
https://github.com/EDeev/web-dev.git
synced 2026-06-15 19:11:12 +03:00
6 lines
104 B
Python
6 lines
104 B
Python
n = int(input())
|
|
if 1 <= n <= 20:
|
|
for i in range(n):
|
|
print(i ** 2)
|
|
else:
|
|
print("Error")
|