import Foundation let n = readLine()!.split(separator: " ").map{Double($0)!} var x = Int(pow(2, n[0]) / pow(2, n[1])) print(x)