#include <iostream>
int main() {
int celsius = 24;
float fahrenheit = ((9.0 / 5.0) * celsius) + 32;
float kelvin = celsius + 273.15;
std::cout << "Fahrenheit = " << fahrenheit << "\n";
std::cout << "Kelvin = " << kelvin << "\n";
}
/*
run:
Fahrenheit = 75.2
Kelvin = 297.15
*/