Drop links or images here to add them to the editor.

Reversed Number ⭐⭐

Read a positive integer and print it reversed using a while loop with %10 and /10.

Input

One positive integer:

  1. N

Output

Print the number reversed.

Example

Input:

1234

Output:

4321