逆序的三位数 (10 分) python版
程序每次读入一个正3位数,然后输出按位逆序的数字。注意:当输入的数字含有结尾的0时,输出不应带有前导的0。比如输入700,输出应该是7。
输入格式:
每个测试是一个3位的正整数。
输出格式:
输出按位逆序的数。
输入样例:
123
输出样例:
321
'''
Created on 2019年11月29日
@author: hp
'''
n=int(input())
str2=""
if not n:
print(0)
else:
while n:
if str2=="" and n%10==0:
pass
else:
str2+=str(n%10)
n//=10
print(str2)