#include <iostream>
using namespace std;

int main() {
	int a = 10, b = 10, c = 10;
	if(a == b or b == c) printf("elo");
	return 0;
}