5 lines
96 B
Python
5 lines
96 B
Python
|
|
def problem_p02817(input_data):
|
||
|
|
s, t = list(map(str, input_data.split()))
|
||
|
|
|
||
|
|
return t + s
|