Problem L: 一维-数组元素加倍
Memory Limit:128 MB
Time Limit:1.000 S
Judge Style:Text Compare
Creator:
Submit:1
Solved:1
Description
输入n个整数,将所有元素乘以2后输出。
Input
第一行输入整数n(1≤n≤100)
第二行输入n个整数,用空格分隔
Output
输出n个整数,表示加倍后的数组,用空格分隔
Sample Input Copy
4
1 2 3 4
Sample Output Copy
2 4 6 8
HINT
1≤n≤100