5 lines
78 B
Python
5 lines
78 B
Python
while True:
|
|
try:
|
|
print(input())
|
|
except EOFError:
|
|
break |