2025-07-17
/*
#include <stdio.h>
int main()
{
int a,b,x,y;
scanf("%d %d",&a,&b);
if(a == 1)
{
x=400;
}
else if(a == 2)
{
x=340;
}
else if(a == 3)
{
x=170;
}
else if(a == 4)
{
x=100;
}
else if(a == 5)
{
x=70;
}
if(b == 1)
{
y=400;
}
else if(b == 2)
{
y=340;
}
else if(b == 3)
{
y=170;
}
else if(b == 4)
{
y=100;
}
else if(b == 5)
{
y=70;
}
if(x+y > 500)
{
printf("angry");
}
else
{
printf("no angry");
}
return 0;
}
*/
2회 조회




