/*
int main()
{
int a;
scanf("%d", &a);
if(30<=a && a<=40 || 60<=a && a<=70)
{
printf("win");
}
else
{
printf("lose");
}
return 0;
}
*/
/*#include <stdio.h>
int main()
{
int t;
scanf("%d", &t);
if(50<=t && t<=70 || t%6==0)
{
printf("win");
}
else
{
printf("lose");
}
return 0;
}
*/
/*#include <stdio.h>
int main()
{
int p, i, t;
scanf("%d %d %d", &p, &i, &t);
if(p<=170 || i<=170 || t<=170)
{
printf("CRASH");
}
else
{
printf("PASS");
}
return 0;
}
*/
/*#include <stdio.h>
int main()
{
int q, w, e;
scanf("%d %d %d", &q, &w, &e);
if(q<(w-e))
{
printf("advertise");
}
else if(q>(w-e))
{
printf("do not advertise");
}
else
{
printf("does not matter");
}
return 0;
}
*/
/*#include <stdio.h>
int main()
{
int t;
scanf("%d", &t);
if(t%400==0 || t%4==0 && t%100!=0)
{
printf("Leap");
}
else
{
printf("Normal");
}
return 0;
}
*/
/*#include <stdio.h>
int main()
{
int s, p;
scanf("%d %d", &s, &p);
if(p%s==0)
{
printf("%d*%d=%d", s, p/s, p);
}
else if(s%p==0)
{
printf("%d*%d=%d", p, s/p, s);
}
else
{
printf("none");
}
return 0;
}
*/
/*#include <stdio.h>
int main()
{
double a, s, d, f;
scanf("%lf %lf", &a, &s);
d =(a-100)*0.9;
f =(s-d)*100/d;
if(f<=10)
{
printf("정상");
}
else if(10<f && f<=20)
{
printf("과체중");
}
else
{
printf("비만");
}
return 0;
}
*/