fun main(args: Array) { val (n,k) = readLine()!!.split(" ").map { it.toInt() } val ans = (1 shl n) / (1 shl k) println(ans) }