/*
#include <stdio.h> //1231 : 계산기 1
int main()
{
int a, b;
char x;
scanf("%d%c%d", &a, &x, &b);
if(x=='+')
{
printf("%d", a+b);
}
else if(x=='-')
{
printf("%d", a-b);
}
else if(x=='*')
{
printf("%d", a*b);
}
else if(x=='/')
{
printf("%.2f", (float)a/b);
}
return 0;
}
*/
/*
#include <stdio.h> //1168 : 나이 계산 1 (미완)
int main()
{
int a, b;
scanf("%d %d", &a, &b);
if(b == 1 || b == 2)
{
}
else if(b == 3 || b ==4)
{
}
return 0;
}
*/
/*
#include <stdio.h> //1218 : 삼각형 판단하기
int main()
{
int a, b, c;
scanf("%d %d %d", &a, &b, &c);
if(a +b > c)
{
if(a == b && b==c)
{
printf("정삼각형");
}
else if(a == b || b == c || c == a)
{
printf("이등변삼각형");
}
else if(a*a+b*b==c*c)
{
printf("직각삼각형");
}
else
{
printf("삼각형");
}
}
else
{
printf("삼각형아님");
}
return 0;
}
*/
/*
#include <stdio.h> //1180 : 만능 휴지통(미완)
int main()
{
int n, x, y;
scanf("%d", &n);
if(n<=99)
{
printf("", x);
if(x<=50)
{
printf("GOOD", y);
}
else
{
printf("OH MY GOD", y);
}
}
printf("%d\n%d", x, y);
return 0;
}
*/