#include <iostream>
using namespace std;

int main() {
    double temp = 66;
    if (temp > 94) {
        cout << "Денатурация ДНК" << endl;
    }
    else if (temp >= 50 && temp <= 65) {
        cout << "Отжиг праймеров" << endl;
    }
    else {
        cout << "Режим ожидания" << endl;
    }
    
    return 0;
}