eolymp
bolt
Try our new interface for solving problems
Problems

2^k + 2^n

2^k + 2^n

Time limit 1 second
Memory limit 64 MiB

Two different integers k and n are given. Print the value 2^k + 2^n, using bit operations only.

Input data

Two different integers k and n (0k, n30).

Output data

Print the number 2^k + 2^n.

Examples

Input example #1
0 1
Output example #1
3
Source 2010 LKSH Berendevy Polyany, August, Parallel C, Day 1, Problem A