#include <iostream>
using namespace std;

int main() {
	int n = 2;
	if(1 <= n <= 3)
		cout << "OK";
	return 0;
}