100417 - 整数翻转

Time Limit

10 毫秒

Memory Limit

128 MB

通过次数

25

提交次数

33

把一个整数n的各位翻转输出:

123->321;

-123->-321;

1230->321。

Input

一行,一个整数。

对于100%的数据:

-1\cdot 10^9 \le n \le 1\cdot 10^9

Output

一行,一个正整数。

Examples

Input

147

Output

741

Input

2580

Output

852