Submission
Status:
PPPPPPPPPP
Subtask/Task Score:
100/100
Score: 100
User: RaweerojFirst
Problemset: Baking Croissant
Language: cpp
Time: 0.002 second
Submitted On: 2025-11-07 11:10:37
#include<stdio.h>
#include<math.h>
int main()
{
int t ;
scanf("%d", &t);
if (t < 160)
printf("Undercooked");
else if (t >= 160 && t <= 180 )
printf("Perfect");
else if (t > 180)
printf("Burnt");
return 0;
}