// editor5
#include <stdio.h>
#include<string.h>

int main()
{
    char s;
    scanf("%d",&s);
    
    if(s==red){
        printf("Stop");
    }
    else if(s==yellow)
    {
        printf("Ready");
    }
    else{
        printf("Invalid input");
    }
}