Currently: ```elm from cities select temp_c = (temp - 32) * 3 ``` compiles to: ```sql SELECT temp - 32 * 3 AS temp_c FROM cities ``` ...which has the wrong precedence — we should have `(temp - 32) * 3`