S.cpp 193 B

123456789101112
  1. #include <bits/stdc++.h>
  2. using namespace std;
  3. const double PI = acos(-1.0);
  4. int main() {
  5. double f;
  6. cin >> f;
  7. cout << fixed << setprecision(3) << 5 * (f - 32) / 9;
  8. return 0;
  9. }