Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
90088 徐梓涵 04四位数移位 Python3 Wrong Answer 33 MS 3756 KB 77 2024-09-07 19:59:07

Tests(0/8):


Code:

s=int(input()) a=s//10%10 b=s//1000%10 c=s//100%10 d=s%10 print(d,b,c,a)


Run Info:

------Input------
6234
------Answer-----
4623
------Your output-----
4 6 2 3