Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
132327 胡皓宇 04四位数移位 Python3 Accepted 55 MS 3772 KB 136 2025-10-08 08:31:13

Tests(8/8):


Code:

n = int(input()) a = str(n//1000) #千 b = str(n//100%10) #百 c = str(n//10%10) #十 d = str(n%10) #个 print(d+a+b+c)