Power

Problem Statement

Write a program that calculates 2^N.

The use of the exponentiation operator is forbidden.

Input

A single non-negative integer N (0 ≤ N ≤ 30).

Output

Print the value of 2^N.

Example

input output
4 16