#include <iostream>
using namespace std;
int main() {
int a = 5, b = 10;
if (a > 3 && b < 15) {
cout << "1";
} else if (a < 5 || b > 9) {
cout << "2";
} else {
cout << "3";
}
if (a = 0) {
cout << "4";
}
cout << "5";
return 0;
}