#include <iostream>
#include <ctime>
#include <random>
using namespace std;

int main() {
	srand(time(NULL));
	
	int moneta;
	moneta = rand() % 2;
	
	if(moneta == 0) {
		cout << "Orzel" << endl;
	} else {
		cout << "Reszka" << endl;
	}
	
	return 0;
}