Submission

Status:

PPPPPPPPPP

Subtask/Task Score:

100/100

Score: 100

User: monpluk

Problemset: Baking Croissant

Language: cpp

Time: 0.003 second

Submitted On: 2025-10-06 21:45:23

#include <iostream>
using namespace std;

int main(){
    int temp;
    cin >> temp;
    if(temp<160){
        cout << "Undercooked";
    }else if(160<=temp && temp<=180){
        cout << "Perfect";
    }else{
        cout << "Burnt";
    }
}