Problem1699--整数倍数计算器

1699: 整数倍数计算器

[Creator : ]
Time Limit : 1.000 sec  Memory Limit : 128 MB

Description

编写一个C++程序,该程序使用`while`循环来计算用户输入的整数乘以2的结果。程序应该持续运行,直到用户输入0为止。

Input

输入整数

Output

输出该整数乘以2的结果

Sample Input Copy

5
3
0

Sample Output Copy

10
6
程序结束,再见!

Source/Category