13038: 逆序输出
Memory Limit:128 MB
Time Limit:1.000 S
Judge Style:Text Compare
Creator:
Submit:1
Solved:0
Description
输入一个3位的正整数,逆序输出。
Input
输入一个3位的正整数
如:123
Output
逆序输出
如:321
Sample Input Copy
123
890
905
Sample Output Copy
321
098
509
HINT
利用div和mod完成