n = int(input("Введите число N: "))
i = 1
while i <= n:
print(i ** 2)
i += 1
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Verified answer
n = int(input("Введите число N: "))
i = 1
while i <= n:
print(i ** 2)
i += 1