#include <iostream>
using namespace std;

int main() {
    cout << (true != false) << endl;
    cout << (true != true) << endl;
    cout << (false != true) << endl;
    cout << (false != false) << endl;
}

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