This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
#include <bits/stdc++.h>
using namespace std;
//注意:计算实数是尽量用double类型,免得丢失精度。
int main() {
double f;
cin >> f;
printf("%.5lf", 5 * (f - 32) / 9);
return 0;
}