#9406. 计算2的幂

计算2的幂

Description

给定非负整数$n$,求$2^n$的值,即$2$的$n$次方。

Input Format

一个整数$n$。$0 ≤ n < 31$。

Output Format

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

3


8