#include #include #include using namespace std; int main() { int a, b, c; cin >> a >> b >> c; if (b < c) cout << 4 << endl; else cout << 1 << endl; }