1031: Variable input drill
Memory Limit:128 MB
Time Limit:1.000 S
Judge Style:Text Compare
Creator:
Submit:171
Solved:79
Description
Write a problem that takes variable input. First input is the number of the remaining list of integer parameters. Show the retrieved list of integer parameters with a single space in between and no space at the end. For example
Input:4 0 1 2 3
Output:0 1 2 3
Input:3 1 1 1
Output:1 1 1
Input
4
0
1
2
3
Output
0 1 2 3
Sample Input Copy
3
1
1
1
Sample Output Copy
1 1 1