1684: 把每个数扩大两倍

Memory Limit:128 MB Time Limit:1.000 S
Judge Style:Text Compare Creator:
Submit:3 Solved:1

Description

 输入n个整数,把里面的数都乘以2,然后再全部输出。

Input

 第一行为n
 第二行有n个整数

Output

 乘以2以后的结果。

Sample Input Copy

6
4 3 2 1 6 5

Sample Output Copy

8 6 4 2 12 10

Source/Category