Which line correctly completes the Fahrenheit-to-Celsius calculation?
celsius = (fahrenheit - 32) * 9 / 5;
celsius = (fahrenheit - 32) * 5 / 9;
celsius = fahrenheit - 32 * 5 / 9;
celsius = (fahrenheit + 32) * 5 / 9;