int main() { int a = 3; int b = 4; if (a == b) { puts("true"); } else { puts("false"); } return 0; }