// Description
Given a non-negative integer n, output the number formed by reversing its decimal digits. Leading zeros in the result are dropped.
// Input
A single integer n (0 <= n <= 10^18).
// Output
The reversed number.
// Hint
Reverse the string and convert it back to an integer to drop leading zeros.