I.cpp 206 B

12345678910111213
  1. #include <bits/stdc++.h>
  2. using namespace std;
  3. int main() {
  4. double F;
  5. cin >> F;
  6. cout << "F=" << fixed << F << endl;
  7. double C = (F - 32) * 5 / 9;
  8. cout << "C=" << fixed << C << endl;
  9. return 0;
  10. }