Files
kattis/echoechoecho.py
2023-06-23 21:50:04 +02:00

9 lines
90 B
Python

print(
" ".join(
[
input().strip(),
]
* 3
)
)