#T215. 计算2的N次方

计算2的N次方

Description

Given any positive integer N (N ≤ 100), calculate the value of 2 raised to the power of N (2N).

Input Format

Input a positive integer N.

Output Format

Output the value of 2N.

N = int(input())
print(2 ** N)
5

32