1866: 2的n次方计算

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

Description

不使用累计乘法的基础上,通过移位运算(<<)实现2的n次方的计算。

Input

多组输入,每一行输入整数n(0 <= n < 31)。

Output

针对每组输入输出对应的2的n次方的结果。

Sample Input Copy

2
10

Sample Output Copy

4
1024