#include <iostream>

int main() {
    int a = 1 > 2 ? 5 : 10;
    std::cout << a;
}

//https://pt.stackoverflow.com/q/44741/101