Write a program that reads three integers and prints them in reverse order.

Input

Three integers, each on a separate line.

Output

One single line with three numbers in reverse order and separated by a space.

Example

Input:

1234
666
789

Output:

789 666 1234