Submission

Status:

PPPPPPPPPP

Subtask/Task Score:

100/100

Score: 100

User: pond4545

Problemset: Baking Croissant

Language: cpp

Time: 0.002 second

Submitted On: 2025-09-25 13:48:14

#include <iostream>
using namespace std;

int main()
{
    int temp;
    cin >> temp;
    if(temp<160)
    {
        cout << "Undercooked";

    }
    else if(temp>=160 and temp<=180)
    {
        cout << "Perfect";
    }
    else 
    {
        cout << "Burnt";
    }
    return 0;
}