31. Add parentheses to the following expression to make the order of evaluation more clear. y % 4 == 0 and y % 100 ! = 0 or y % 400 == 0

(((y%4) == 0) and ((y%100) != 0)) or ((y % 400)== 0)