Write a function which takes an integer as parameter and print given integer in reverse order. The name of your function must be reverseOrder.

Assume that last digit of input will NOT be 0.

The main function is already coded for you. You will implement just the reverseOrder function.

Examples:
INPUT OUTPUT
123456 654321
1 1
10111213 31211101
9876 6789


Important issues about all exams/projects/quizzes: