eolymp
bolt
Try our new interface for solving problems
Problems

Swap the digits in two-digit integer

Swap the digits in two-digit integer

Given two-digit positive integer. Print the number after swapping its digits.

Input

One two-digit positive integer n (10n99).

Output

Print the number after swapping the digits of n.

Time limit 1 second
Memory limit 128 MiB
Input example #1
83
Output example #1
38
Source Ramin Textbook Z1.3