/*
#include <stdio.h>
int main()
{
int tunnela,tunnelb,tunnelc;
scanf("%d %d %d",&tunnela,&tunnelb,&tunnelc);
if(tunnela<=170){
printf("CRASH %d",tunnela);
}
else if(tunnelb<=170){
printf("CRASH %d",tunnelb);
}
else if(tunnelc<=170){
printf("CRASH %d",tunnelc);
}
else{
printf("PASS");
}
}
#include <stdio.h>
int main()
{
int time,ascore,bscore;
scanf("%d %d %d",&time,&ascore,&bscore);
if(time%5==0)
{
ascore = ascore + (90 - time)/5;
}
else
{
ascore = ascore + (90 - time)/5 + 1;
}
if(ascore == bscore)
{
printf ("same");
}
else if(ascore > bscore)
{
printf("win");
}
else
{
printf("lose");
}
}
#include <stdio.h>
int main()
{
int time,ourscore;
scanf("%d %d",&time,&ourscore);
if(time%5==0){
printf("%d",ourscore + (90 - time) / 5);
}
else{
printf("%d",ourscore + (90 - time) / 5 + 1);
}
*/
}