#include using namespace std; #define rep(i,n) for(ll i=0;i=0;i--) #define perl(i,r,l) for(ll i=r-1;i>=l;i--) #define fi first #define se second #define ins insert #define pqueue(x) priority_queue,greater> #define all(x) (x).begin(),(x).end() #define CST(x) cout<; using vvl=vector>; using pl=pair; using vpl=vector; using vvpl=vector; const ll MOD=1000000007; const ll MOD9=998244353; const int inf=1e9+10; const ll INF=4e18; const ll dy[9]={1,0,-1,0,1,1,-1,-1,0}; const ll dx[9]={0,1,0,-1,1,-1,1,-1,0}; template inline bool chmax(T &a, T b) { return ((a < b) ? (a = b, true) : (false)); } template inline bool chmin(T &a, T b) { return ((a > b) ? (a = b, true) : (false)); } int main(){ ll n,k;cin >> n >> k; string op; rep(i,n)op+='.'; while(op.size()%3)op+='.'; rep(i,k){ ll a;cin >> a; char x;cin >> x;a--; op[a]=x; } rep(i,op.size()/3){ set st; st.insert('R'); st.insert('G'); st.insert('B'); rep(j,3){ if(st.count(op[i*3+j])){ st.erase(op[i*3+j]); } else{ op[i*3+j]=*st.begin(); st.erase(st.begin()); } } } rep(i,n)cout << op[i];cout << endl; }