const C = 'Temperature in Celsius: '; const F = 'Temperature in Fahrenheit: '; alert(F + (prompt(C) * 1.8 + 32)); alert(C + ((prompt(F) - 32) / 1.8));