#include using namespace std; using ll = long long; using vll=vector; templateT get(){T r;cin>>r;return r;} templatevector get_v(ll n){vector v;for(int i=0;i!=n;i++){v.push_back(get());};return v;} templatevoid show_v(vector v){ for(ll i=0;i!=v.size()-1;i++) cout< s=get_v(3); string r="RED",b="BLUE"; ll cnt=0; for(auto const &i:s){ cnt+=i==r; } cout<<(cnt>=2?r:b)<