#include <iostream>

int main() {
    bool test = 5;

    using namespace std;
    cout << (test == true) << "\n";
    cout << (test == false) << "\n";
}
