#include <iostream>
using namespace std;

int main() {
	int a = -5;
	unsigned int b = 7;
	
	if (a < b)
		cout << "-5 < 7" << endl;
	else
		cout << "oops, obosralsya" << endl;
	
	return 0;
}