#include<stdio.h>
int main(){
    char ch;
    if(Red!==ch || Yellow!==ch || Green!==ch){
        printf("Invalid input");
    }
    else if(ch==Red){
        printf("Stop");
    }
    else if(ch==Yellow){
        printf("Ready");
    }
    else{
        printf("Go");
    }
}