#abc256a. A - 2^N

A - 2^N

Score : 100100 points

问题描述

给定 NN,输出 2N2^N

以上为通义千问 qwen-max 翻译,仅供参考。

Problem Statement

Given NN, print 2N2^N.

Constraints

  • 0N300 \leq N \leq 30
  • NN is an integer.

Input

Input is given from Standard Input in the following format:

NN

Output

Print the answer.

Sample Input 1

3

Sample Output 1

8

We have 23=82^3=8.

Sample Input 2

30

Sample Output 2

1073741824

update @ 2024/3/10 10:52:44