#Z12503. 反向输出一个三位数

反向输出一个三位数

Description

Reverse a three-digit number. For example, if the input is 358, the reversed output should be 853.

Input Format

A three-digit number n.

Output Format

Output the reversed number of n.

**Example Input:**
358

**Example Output:**
853
100

001