//
//import java.util.*;
//
//public class Main {
// public static void main(String[] args) {
// Scanner t = new Scanner(System.in);
//
// int a = t.nextInt();
// int b = t.nextInt();
// int c = t.nextInt();
//
// if(a%2==0) {
// System.out.println(a);
// }
// if(b%2==0) {
// System.out.println(b);
// }
// if(c%2==0) {
// System.out.println(c);
// }
// }
//}
//import java.util.*;
//
//public class Main {
// public static void main(String[] args) {
// Scanner t = new Scanner(System.in);
//
// int a = t.nextInt();
// int b = t.nextInt();
// int c = t.nextInt();
//
// if(c<(a+b)&&c>=a&&c>=b) {
// System.out.println("yes");
// }
// else if(c>=(a+b)&&c>=a&&c>=b) {
// System.out.println("no");
// }
// else if(a<(c+b)&&a>=c&&a>=b) {
// System.out.println("yes");
// }
// else if(a>=(c+b)&&a>=c&&a>=b) {
// System.out.println("no");
// }
// else if(b<(a+c)&&b>=a&&b>=c) {
// System.out.println("yes");
// }
// else if(b>=(c+a)&&b>=a&&b>=c) {
// System.out.println("no");
// }
// }
//}
//import java.util.*;
//
//public class Main {
// public static void main(String[] args) {
// Scanner t = new Scanner(System.in);
//
// int n = t.nextInt();
//
// for(int i=0; i<n; i++) {
// System.out.println(i);
// }
// }
//}
//import java.util.*;
//
//public class Main {
// public static void main(String[] args) {
//
// int n = 100;
//
// for(int i=1; i<=n; i++) {
// System.out.println(i);
// }
// }
//}
//import java.util.*;
//
//public class Main {
// public static void main(String[] args) {
// Scanner t = new Scanner(System.in);
//
// int a = t.nextInt();
// int b = t.nextInt();
//
// if(a>=b) {
// for(int i=b; i<=a; i++) {
// System.out.println(i);
// }
// }
// else if(b>=a) {
// for(int i=a; i<=b; i++) {
// System.out.println(i);
// }
// }
// }
//}
//import java.util.*;
//
//public class Main {
// public static void main(String[] args) {
// Scanner t = new Scanner(System.in);
//
// int a = t.nextInt();
// int b = t.nextInt();
//
// if(b>=a&&a%2==1) {
// for(int i=a; i<=b; i+=2) {
// System.out.println(i);
// }
// }
// if(b>=a&&a%2==0) {
// for(int i=a+1; i<=b; i+=2) {
// System.out.println(i);
// }
// }
// }
//}
//import java.util.*;
//
//public class Main {
// public static void main(String[] args) {
// Scanner t = new Scanner(System.in);
//
// int a = t.nextInt();
// int b = t.nextInt();
// for(int i=a; i<=b; i++) {
// if(i%2==1) {
// System.out.println(i);
// }
// }
// }
//}
//import java.util.*;
//
//public class Main {
// public static void main(String[] args) {
// Scanner t = new Scanner(System.in);
//
// int n = t.nextInt();
// int sum=0;
// for(int i=1; i<=n; i++) {
// if(i%2==0) {
// sum = sum + i;
// //sum+=i;
// }
// }
// System.out.println(sum);
// }
//}
//import java.util.*;
//
//public class Main {
// public static void main(String[] args) {
// Scanner t = new Scanner(System.in);
//
// int n = t.nextInt();
//
// int i=12;
// int k = i;
// while(i<n) {
//
// System.out.println(i);
//
// if(i==k+2) break;
//
// i++;
// }
//
//
//
// }
//}
//import java.util.*;
//
//public class Main {
// public static void main(String[] args) {
// Scanner t = new Scanner(System.in);
//
// int a = t.nextInt();
// int b = t.nextInt();
// int c = t.nextInt();
// int n = t.nextInt();
// int i = 1;
//
// while(i<n) {
// a=a*b+c;
// i++;
// }
// System.out.println(a);
// }
//}
//import java.util.*;
//
//public class Main {
// public static void main(String[] args) {
// Scanner t = new Scanner(System.in);
//
// int n = t.nextInt();
// int i = 1;
// int count = 0;
//
// while(i<=n) {
// if(i%10==1) {
// count++;
// }
// i++;
// }
// System.out.println(count);
// }
//}
//import java.util.*;
//
//public class Main {
// public static void main(String[] args) {
// Scanner t = new Scanner(System.in);
//
// int n = t.nextInt();
// int i = 1;
// int max = -1;
// while(i<=n) {
// int k = t.nextInt();
// if(max < k) max = k;
// i++;
//
// }
// System.out.println(max);
// }
//}
import java.util.*;
public class Main {
public static void main(String[] args) {
Scanner t = new Scanner(System.in);
int k = t.nextInt();
int h = t.nextInt();
if(k%2==1);