#include #include #include #include #include #include #include #include #include #include #include using namespace std; int main() { int x, y; cin >> x >> y; int a = (x + 4) % 12; int b = (x + 8) % 12; cout << (y ^ a ^ b) << endl; return 0; }