#include <bits/stdc++.h>
using namespace std;

int main(){
	ios::sync_with_stdio(false);
	cin.tie(0);  
	string s;
	for(int i = 0; i < 3; i++) {
		string t;
		cin >> t;
		s += t;
	}
	if(s.size() <= 10) cout << "RED" << endl;
	else cout << "BLUE" << endl;
	return 0;	
}