@@ -0,0 +1,13 @@
#include <iostream>
#include <iomanip>
int main ()
{
int fahrenheit;
double celcius;
std::cin >> fahrenheit;
celcius = 5.0 / 9 * (fahrenheit - 32);
std::cout << std::setprecision(2) << std::fixed << celcius;
return 0;
}
The note is not visible to the blocked user.