Problem1218--编程3

1218: 编程3

[Creator : ]
Time Limit : 1.000 sec  Memory Limit : 128 MB

Description

输入一个任意三位整数,将它反转输出,例如369反转成963。

Input

369

Output

963

Sample Input Copy

123

Sample Output Copy

321

HINT

注:程序修改时,请把下划线及序号删除;不能删除注释语句。

x=___①____(input("请输入一个任意三位整数:"))

ge=__②____

shi=x//10%10

bai=__③____

___④____=ge*100+shi*10+bai

print(y)

Source/Category