Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
132224 叶航帅 04四位数移位 Python3 Wrong Answer 55 MS 3756 KB 112 2025-10-07 13:35:04

Tests(5/8):


Code:

a = int(input()) b = a//1000 c = a%1000//100 d = a%100//10 e = a%10 ans = c*10+b*100+d*1+e*1000 print(ans)


Run Info:

------Input------
7980
------Answer-----
0798
------Your output-----
798