Number Reversal

Beginner

Given a 3-digit number, you have to reverse the number.

Input Format

A single line containing a 3 digit number n.

Output Format

The number generated by reversing the digits.

Examples

Sample Input 1

237

Expected Output

732

Sample Input 2

310

Expected Output

13

Constraints

100 <= n <= 999

Editorial Link: Editorial