#P308. 【例52.2】 序列倒置

【例52.2】 序列倒置

Description

Given a sequence of positive integers, reverse the sequence and output it.

Input Format

The input consists of one line containing the given sequence of positive integers, separated by spaces.
The total number of integers does not exceed 10410^4, and each number is in the range [11,10410^4].

Output Format

One line containing the reversed sequence.

Sample

3 7 2 1
1 2 7 3