#include <stdio.h>

int main ()

{

int a=2,b=0;

b = a == 2;

printf("%d\n",b);

b = a == 1;

printf("%d\n",b);

return 0;

}



동아리에서 숙제내줘슨ㄴ데

이거 결과가  

1

0


왜 이렇게 나오는거야