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