#include <iostream> using namespace std; int main() { float c,f; scanf("%f",&c); f=9.0/5.0*c+32; cout<<endl<<"华氏温度="<<f; return 0; }