Read an integer. Print it reversed. Example: 1234 => 4321. Reverse the digits as text, so trailing zeros become leading zeros (1000 reverses to 0001).
Write a complete program: read the input with input() and print the result with print().
Input
1234
Output
4321