Submission
Status:
PPPPPPPPPP
Subtask/Task Score:
100/100
Score: 100
User: helloworld111
Problemset: Baking Croissant
Language: cpp
Time: 0.002 second
Submitted On: 2026-05-02 13:45:47
#include <bits/stdc++.h>
using namespace std;
int main() {
int t; cin >> t;
if(t < 160) cout << "Undercooked";
if(t >= 160 && t <=180) cout << "Perfect";
if(t > 180) cout << "Burnt";
return 0;
}