//constant variable cannot be changed
const kelvin = 0;
//celsius is 273 less than kelvin
let celsius = kelvin - 273;
//fahrenheit formula
let fahrenheit = celsius * (9/5) + 32;
//rounds down the decimal number
fahrenheit = Math.floor(fahrenheit);
console.log(`The temperature is ${fahrenheit} degrees Fahrenheit.`);
let newton = celsius * (33/100);
newton = Math.floor(newton);
console.log(`The temperature is ${newton} degrees Newton.`);