#include<stdio.h>
int main()
{
    char S[20];
    scanf("%s",S);
    if(S[0]=='R' && S[1]=='e' && S[2]=='d' S[3]=='\0' )
    {
        printf("Stop");
    }
    else if(S[0]=='Y' && S[1]=='e' && S[2]=='l' S[3]=='l' && S[4]=='o' && S[4]=='w' && S[5]=='\0')
    {
        printf("Ready");
    }
     else if(S[0]=='G' && S[1]=='r' && S[2]=='e'&& S[3]=='e' && S[4]=='n' && S[5]=='\0')
     {
         printf("Go");
     }
     else
     {
         printf("Invalid input")
     }

}