Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
132649 潘允晨 04四位数移位 Python3 Accepted 55 MS 3752 KB 58 2025-10-12 09:07:19

Tests(8/8):


Code:

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