package yukicoder; import java.util.Scanner; public class No560 { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int m = sc.nextInt(); int n = sc.nextInt(); for(int i = 0; i < n; i++) { double random = Math.random(); if(random <= 0.3333333333333333) { m *= 2; } else if(random <= 0.6666666666666666) { m++; } else { m = 0; } } System.out.println(m); } }