#include <stdio.h>
#include<ctype.h>
#include<string.h>
int main()
{
 char c[20];
 scanf("%s",c);
 a[20]="Red";
 b[20]="Yellow";
 d[20]="Green";
 if(strcmp(c,a))
 {
     printf("Stop");
 }
 else if(strcmp(c,b))
 {
     printf("Ready");
 }
 else if(strcmp(c,d))
 {
     printf("Go");
 }
 else
 {
     printf("Invalid input");
 }
}