11245: 4-数组逆序存储输出

Memory Limit:128 MB Time Limit:1.000 S
Judge Style:Text Compare Creator:
Submit:2 Solved:0

Description

输入6个数到数组里面,实现数组元素逆序存储并输出

Input

输入6个数

Output

输出6个数,数之间用一个空格分开,最后一个数后面没有空格

Sample Input Copy

1 2 3 4 5 6

Sample Output Copy

6 5 4 3 2 1