2^k + 2^n
Execution time limit is 1 second
Runtime memory usage limit is 64 megabytes
Two different integers k and n are given. Print the value 2^k
+ 2^n
, using bit operations only.
Input
Two different integers k and n (0 ≤ k, n ≤ 30).
Output
Print the number 2^k
+ 2^n
.
Examples
Input #1
Answer #1
Submissions 17K
Acceptance rate 61%