9 lines
90 B
Python
9 lines
90 B
Python
print(
|
|
" ".join(
|
|
[
|
|
input().strip(),
|
|
]
|
|
* 3
|
|
)
|
|
)
|