#B2034. Compute $2^n$
Compute $2^n$
Compute
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