#3179. 倒序数

倒序数

Description

输入一个非负整数,输出这个数的倒序数。例如输入123,输出321。

Format

Input

输入一个非负整数(保证个位不为零)。

Output

输出倒序的数。

Samples

123
321

Limitation

1s, 1024KiB for each test case.