Input and Output Array
PrepBuddy wants you to ease into the topic of Array, so he provided the most basic
question. You are given an integer NN representing the size of the array and NN
elements of the array. Your task is to input the array and output it.
Input Format
First line contains Test case variable TT , For each of the TT lines First line
contains NN Second line contains NN space-separated integers representing the
elements of the array.
Output format
For each TT case, output the Array in a new line.
Constraints
1<=N<=1001<=N<=100 −10<=A[i]<=50−10<=A[i]<=50
Time limit
11 second
Example
Input
22 55 11 22 33 44 55 77 55 11 44 66 88 11 44
Output
11 22 33 44 55 55 11 44 66 88 11 4