#include #include using namespace std; int main() { int R=0, B=0; for (int i=0; i<3; i++) { string s; cin >> s; if (s=="RED") R++; else B++; } printf("%s\n", R>B ? "RED": "BLUE"); return 0; }