#include <typeinfo>
#include <iostream>

using namespace std;

int main() {
    cout << (typeid(int) == typeid(char)) << endl; //
    cout << (typeid(double) == typeid(100.40)) << "\n" << endl; // FALSE

    return 0;
}
