#B2034. Compute $2^n$

    ID: 11116 Type: Default 1000ms 256MiB

Compute $2^n$

Compute 2n2^n

Given a non-negative integer \(n\), compute \(2^n\). This problem requires you to calculate the power of two for the provided integer. Be cautious of potential overflow issues if the input is large.

inputFormat

The input consists of a single non-negative integer \(n\).

outputFormat

Output a single integer representing the value of \(2^n\).

sample

0
1