#Z12509. 计算2的幂

计算2的幂

Description

Given a non-negative integer nn, compute the value of 2n2^n, i.e., 22 raised to the power of nn.

Input Format

An integer nn, where 0n<310 \leq n < 31.

Output Format

An integer representing the value of 2n2^n.

3


8