#include <iostream>
#include <cmath>
using namespace std;

int main(){
    double x=std::sqrt(-1);
    std::cout << std::boolalpha << ( x==x+1 ) << '\n';
}
