#include <stdio.h> void main () { float C,F; scanf("%f",&C); F = C/5*9+32; printf("%f摄氏度转化为华氏度%.2f",C,F); }