//import java.util.*;
//public class Main {
// public static void main(String[] args) {
// Scanner t = new Scanner (System.in);
//
// int x = t.nextInt();
// int y = t.nextInt();
//
//// System.out.print(x);
//// System.out.print(" ");
//// System.out.println(y);
//
// System.out.println(x+" "+ y);
// }
//}
//import java.util.*;
//public class Main {
// public static void main(String[] args) {
// Scanner t = new Scanner (System.in);
//
// char v = t.next().charAt(0);
// char w = t.next().charAt(0);
//
// System.out.print(w+" "+v);
//
// }
//}
//import java.util.*;
//
//public class Main {
//
// public static void main(String[] args) {
//
// Scanner t = new Scanner (System.in);
//
//
//
// long x = t.nextLong();
//
// long y = t.nextLong();
//
//
//
// System.out.println(x+y);
//
//
//
// }
//
//}
//
//import java.util.*;
//
//public class Main {
//
// public static void main(String[] args) {
//
// Scanner t = new Scanner (System.in);
//
//
// long x = t.nextLong();
//
// long y = t.nextLong();
//
//
// System.out.println(x+y);
//
// }
//}
//
//
//
// 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();
//
// System.out.println(a%b);
// }
// }
//
//
//
//
// 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();
//
//
// System.out.println(a+b);
// System.out.println(a-b);
// System.out.println(a*b);
// System.out.println(a/b);
// System.out.println(a%b);
// System.out.printf("%.2f",(float)a/b);
// }
// }
//
//
// 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();
//
//
// System.out.println(a+b);
//
// }
// }
//
//
//
// 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() ;
//
//// System.out.println(a + "+" + b + "=" + (a+b));
//// System.out.printf("%d+%d=%d\n", a, b, a+b); // c lan
// // System.out.println("int a""+""int b"="a+b");
//
//
// System.out.println(a + "+" + b + "=" + (a+b));
// System.out.println(a + "-" + b + "=" + (a-b));
// System.out.println(a + "*" + b + "=" + (a*b));
// System.out.println(a + "/" + b + "=" + (a/b));
//
// }
// }
//
// import java.util.*;
//
// public class Main {
//
// public static void main(String[] args) {
//
//
// Scanner t = new Scanner (System.in);
//
//
// float a = t.nextFloat();
// float b = t.nextFloat();
//
// System.out.printf("%.2f",(float)a*b);
//
// }
// }
//
//
// 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();
//
//
// System.out.printf("%.1f",(float)a*b/2);
//
//// System.out.printf("%.1f+&%d", a+1212, b, c);
// }
// }
// import java.util.*;
//
//
//
// public class Main {
//
// public static void main(String[] args) {
//
//
// Scanner t = new Scanner (System.in) ;
//
// int a = t.nextInt();
//
// System.out.printf("%.3f",(float)9/5*a+32);
//
// }
// }
//
//import java.util.*;
//
//public class Main {
// public static void main(String[] args) {
// Scanner t = new Scanner(System.in);
//
// int x = t.nextInt();
// int y = t.nextInt();
//
// System.out.println(x > y ? 1 : 0);
// }
//}
// a b
// >, >=, <, <=, ==, a != b
//import java. util.*;
//
//public class Main {
// public static void main(String[] args) {
//
// Scanner t = new Scanner(System.in);
//
//
// int x = t.nextInt();
// int y = t.nextInt();
//
// System.out.println(x != y ? 0 : 1);
//
// }
//}
//
//import java.util.*;
//
//
//public class Main {
//
// public static void main(String[] args) {
//
// Scanner t = new Scanner(System.in);
//
//
// int x = t.nextInt();
// int y = t.nextInt();
//
// System.out.println( x <= y ? 1 : 0);
//
// }
//}
//
//
//import java.util.*;
//
//public class Main {
// public static void main(String[] args) {
//
//
// Scanner t = new Scanner(System.in);
//
// int x = t.nextInt();
// int y = t.nextInt();
//
// System.out.println(x != y ? 1 : 0);
// }
//}
//
//
//import java.util.*;
//
//public class Main {
// public static void main(String[] args) {
// Scanner t = new Scanner(System.in);
//
// int x = t.nextInt();
// int y = t.nextInt();
//
// boolean bx = x==1;
// boolean by = y==1;
//
// int r = bx && by ? 1 : 0;
//
// System.out.println( r );
// }
//}
//import java.util.*;
//
//public class Main {
// public static void main(String[] args) {
//
// Scanner t = new Scanner(System.in);
//
// int x = t.nextInt();
//// int y = t.nextInt();
//
// boolean bx = x==1;
// // boolean by = y==1;
//
// int r = !bx ? 1 : 0 ;
//
// System.out.println(r);
//
// }
//}
//
//
//import java.util.*;
//
//public class Main {
// public static void main(String[] args) {
//
// Scanner t = new Scanner(System.in);
//
// int x = t.nextInt();
// int y = t.nextInt();
//
// boolean bx = x==1;
// boolean by = y==1;
//
//
// int r = !(bx&&by)&&(bx||by) ? 1 : 0 ;
//
// System.out.println(r);
//
// }
//}
//import java.util.*;
//
//public class Main {
// public static void main(String[] args) {
//
// Scanner t = new Scanner(System.in);
//
// int x = t.nextInt();
// int y = t.nextInt();
//
//
// boolean bx = x==1;
// boolean by = y==1;
//
// int r = (!bx&&!by)||(bx&&by) ? 1 : 0 ;
//
// System.out.println(r);
//
// }
//}
import java.util.*;
public class Main {
public static void main(String[] args) {
Scanner t = new Scanner(System.in);
int x = t.nextInt();
int y = t.nextInt();
boolean bx = x==1;
boolean by = y==1;
int r = !bx&&!by ? 1 : 0;
System.out.println(r);
}
}



