#include #include using namespace std; int main() { std::cin.tie(0); std::ios::sync_with_stdio(false); int a, b; cin >> a >> b; a = a < 23 ? 23 : a; b = b > 25 ? 25 : b; cout << 3 - max(0, b - a + 1) << "\n"; return 0; }