#include #define rep(i, ss, ee) for (int i = ss; i < ee; ++i) using namespace std; void solve() { string s, ans; int r = 0, b = 0; rep(i, 0, 3) { cin >> s; (s == "RED") ? r++ : b++; } (r > b) ? ans = "RED" : ans = "BLUE"; cout << ans << endl; } int main() { cin.tie(0); ios::sync_with_stdio(false); solve(); getchar(); }