Submission
Status:
PPPPPPPPPP
Subtask/Task Score:
100/100
Score: 100
User: kavin8888
Problemset: Baking Croissant
Language: cpp
Time: 0.002 second
Submitted On: 2025-10-23 11:00:58
#include<bits/stdc++.h>
using namespace std;
#define spps1 ios::sync_with_stdio(false)
#define spps2 cin.tie(nullptr)
int main()
{
int n; cin>>n;
if(n>180)
{
cout<<"Burnt";
return 0;
}
else if(n<160)
{
cout<<"Undercooked";
return 0;
}
else
{
cout<<"Perfect";
return 0;
}
}