#include <stdio.h>

#include <stdbool.h>


int main(void) {

bool A = 2, B = 3;

printf("%s", A == B ? "true" : "false" );

return 0;

}


의 출력 결과는 무엇이라고 생각하시나요