import java.io.IOException; import java.util.Arrays; import java.util.NoSuchElementException; public class Main{ static long dp[] = new long[51]; public static void main(String[] args){ FastScanner sc = new FastScanner(); int K = sc.nextInt(); int N = sc.nextInt(); int[] x = new int[N]; int[] L = new int[N+1]; int[] R = new int[N+1]; int l = 1; int r = 1; Arrays.fill(L, 123456789); L[0] = 0; R[0] = 0; for(int i=0;i