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

11 lines
171 B
C++
Raw Normal View History

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