Given any positive integer N (N ≤ 100), calculate the value of 2 raised to the power of N (2N).
Input a positive integer N.
Output the value of 2N.
N = int(input()) print(2 ** N)
5
32
Using your Hydro universal account