0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-20 07:05:24 +00:00
OI-codes/Luogu/B2013/B2013.cpp

11 lines
171 B
C++

#include <bits/stdc++.h>
using namespace std;
int main() {
double f;
cin >> f;
cout << fixed << setprecision(5) << 5 * (f - 32) / 9 << endl;
return 0;
}