#include <iostream>
#include <iomanip>
int main(int argc, const char *argv[])
{
double f;
std::cin >> f;
std::cout << "c = " << std::setiosflags(std::ios::fixed) << std::setprecision(3) << 5 * (f - 32) / 9 << std::endl;
return 0;
}
以上为保留三位小数,