Difference between int C =(5/9)*(F-32); and int C =(5*(F-32))/9;

please tell me ,why int C =(5/9)(F-32); gives 0 and int C =(5(F-32))/9; gives correct result;

we solve brackets first and (5/9) will be 0