#define _USE_MATH_DEFINES #include //cin, cout #include //vector #include //sort,min,max,count #include //string,getline, to_string #include //abs(int) #include //swap, pair #include //deque #include //INT_MAX #include //bitset #include //sqrt, ceil. M_PI, pow, sin #include //fixed #include //setprecision #include //stringstream #include //gcd, assumlate #include //randam_device #include //numeric_limits using namespace std; constexpr int64_t D_MOD = 1000000007; int main() { int A, B; cin >> A >> B; if (A < 23) { if (B < 23) { cout << 3 << endl; } else if (B == 23) { cout << 2 << endl; } else if (B == 24) { cout << 1 << endl; } else if (B == 25) { cout << 0 << endl; } else { cout << 0 << endl; } } else if (A == 23) { if (B == 23) { cout << 2 << endl; } else if (B == 24) { cout << 1 << endl; } else if (B == 25) { cout << 0 << endl; } else { cout << 0 << endl; } } else if (A == 24) { if (B == 24) { cout << 2 << endl; } else if (B == 25) { cout << 1 << endl; } else { cout << 1 << endl; } } else if (A == 25) { if (B == 25) { cout << 2 << endl; } else { cout << 2 << endl; } } else { cout << 3 << endl; } return 0; }