Problem1427--计算2的幂

1427: 计算2的幂

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

Description

蒜术师为你准备了一道最简单的与幂运算的题目:
给定非负整数 n,求 2^n

Input

一个整数 n

0n<31

Output

一个整数,即 2 的 n次方。

Sample Input Copy

3

Sample Output Copy

8

Source/Category