/
#include <iostream> int main() { int b = 100; int a = 100; bool c = a == b; std::cout << c << std::endl; }