Submission

Status:

PPPPPPPPPP

Subtask/Task Score:

100/100

Score: 100

User: Pera

Problemset: Baking Croissant

Language: cpp

Time: 0.002 second

Submitted On: 2025-09-03 11:01:11

#include <bits/stdc++.h>
using namespace std;

int main() {
    ios_base::sync_with_stdio(false);

    int temp; cin >> temp;

    if (temp < 160) cout << "Undercooked";
    else if (temp > 180) cout << "Burnt";
    else cout << "Perfect";
}