Submission

Status:

P-PP-PPPPP

Subtask/Task Score:

80/100

Score: 80

User: monpluk

Problemset: Baking Croissant

Language: cpp

Time: 0.003 second

Submitted On: 2025-10-06 21:44:55

#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";
    }
}