2276: 练45.1 计算2的幂

Memory Limit:64 MB Time Limit:1.000 S
Judge Style:Text Compare Creator:
Submit:0 Solved:0

Description

给定非负整数 $n$,求 $2^n$ ($1≤n≤31$)。

Input

输入只有一行,该行包含一个整数$n$ 。

Output

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

Sample Input Copy

3

Sample Output Copy

8

Source/Category