Submission

Status:

PPPPPPPPPP

Subtask/Task Score:

100/100

Score: 100

User: cyblox_boi

Problemset: Baking Croissant

Language: cpp

Time: 0.003 second

Submitted On: 2025-12-29 16:29:15

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

int main()
{
    ios::sync_with_stdio(false);
    cin.tie(nullptr);

    int temperature;
    cin >> temperature;

    if (temperature < 160)
    {
        cout << "Undercooked";
    }
    else if (temperature <= 180)
    {
        cout << "Perfect";
    }
    else
    {
        cout << "Burnt";
    }

    cout << '\n';

    return 0;
}