#include <iostream>

int main()
{
    double input;
    std::cout << "What is two plus two?" << std::endl;
    std::cin >> input;
    if (input == 4) std::cout << "Correct, sir." << std::endl;
    else std::cout << "Nope, you're bad at math." << std::endl;
}