convert Celcius to Fahrenheit
function convertToF(celsius) {
var fahrenheit;
// Only change code below this line
fahrenheit = celsius * (9/5) + 32;
// Only change code above this line
alert(fahrenheit);
//return fahrenheit;
}
// Change the inputs below to test your code
convertToF(30);