Submission
Status:
PPPPPPPPPP
Subtask/Task Score:
100/100
Score: 100
User: JRomsponCH
Problemset: Baking Croissant
Language: cpp
Time: 0.003 second
Submitted On: 2025-09-28 18:27:57
#include<iostream>
using namespace std;
int main(){
int temp;
cin>>temp;
if (temp < 160)
{
cout<<"Undercooked";
}
else if (temp >= 160 and temp <= 180)
{
cout<<"Perfect";
}
else
{
cout<<"Burnt";
}
}