#34681: 超簡單解法(C++)


yp11151172@yphs.tp.edu.tw (907-37陸思同)


#include <iostream>
#include <iomanip>
using namespace std;
int main()
{
    double f;
    cin>>f;
    cout<<fixed<<setprecision(3)<<(f-32) *5/9<<endl;
    return 0;
}