Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
132334 赵乘浩 04四位数移位 Python3 Accepted 60 MS 3760 KB 58 2025-10-08 08:45:19

Tests(8/8):


Code:

n=int(input()) a=n//10 b=n%10 print("{}{}".format(b,a))