#include <iostream>
using namespace std;
int main() {
    cout << "2 != true : " << (2 != true) << endl <<  "2 == false : " << (2 == false) << endl ;
    return 0;
}