Submission
Status:
PPPPPPPPPP
Subtask/Task Score:
100/100
Score: 100
User: simon
Problemset: Baking Croissant
Language: cpp
Time: 0.004 second
Submitted On: 2025-12-27 10:39:07
#include <bits/stdc++.h>
using namespace std;
int main(){
int temp;
cin >> temp;
if(temp < 160) cout << "Undercooked";
else if(160 <= temp&& temp <= 180) cout << "Perfect";
else if(temp > 180) cout << "Burnt";
}