program Fahrenheit(input,output); var c, f: real; begin writeLn('Give the Celsius degree.'); readLn(c); f := 9 / 5 * c + 32.0; writeln('The Fahrenheit degree is ', f:3:2); end.