Submission
Status:
PPPPPPPPPP
Subtask/Task Score:
100/100
Score: 100
User: Buktep
Problemset: Baking Croissant
Language: cpp
Time: 0.002 second
Submitted On: 2025-09-24 21:13:02
#include<bits/stdc++.h>
using namespace std;
#define int long long
int32_t main()
{
int t;cin>>t;
if (t<160) cout<<"Undercooked";
else if (t>=160 and t<=180) cout<<"Perfect";
else cout<<"Burnt";
return 0;
}