import java.util.Scanner; class Main{ public static void main(String[] args){ Scanner sc=new Scanner(System.in); int l=sc.nextInt(),n=sc.nextInt(); sc.close(); System.out.print((int)Math.pow(2,l-3)*n); } }