function convert() {
let x = document.getElementById("c").value;
let c = parseInt(x);
let f = c * 1.8 + 32;
document.getElementById("f").innerHTML = f
}
function convert() {
let x = document.getElementById("c").value;
let c = parseInt(x);
let f = c * 1.8 + 32;
document.getElementById("f").innerHTML = f
}