#include using namespace std; int main(){ int a=0; string s; for(int i=0;i<3;i++){ cin >> s; if(s=="RED")a++; } cout << (a>1?"RED":"BLUE") << endl; }