//hdu2537
#include <iostream>
using namespace std;
int main()
{
int n, R, Y;
char c;
while(cin >> n && n != 0)
{
cin.get();//吃掉回车
R = Y = 0;
while(--n)
{
c = cin.get();
if(c == 'R')
R++;
else
Y++;
}
c = cin.get();
if(c == 'B' && R != 7)
cout << "Yellow" << endl;
else if(c == 'B' && R == 7)
cout << "Red" << endl;
else if(c == 'L' && Y != 7)
cout << "Red" << endl;
else
cout << "Yellow" << endl;
}
return 0;
}