삼항연산자가 머임?


int a = 3;

int result = a ! =3 ? 1 : 2;


저게 먼소리임??

a가 3이면 1이고 아니면 2가 튀어나온다는 이야기임?

근데 내가 3이라고했으니까 무조건 1나옴?