1542: 【入门】温度转换

Memory Limit:16 MB Time Limit:1.000 S
Judge Style:Text Compare Creator:
Submit:16 Solved:7

Description

编一程序,将摄氏温度换为华氏温度。公式为:f=9/5*c+32。其中f为华氏温度,c是摄氏温度。(5.2.12)

Input

输入一行,只有一个整数c

Output

输出只有一行,包括1个实数。(保留两位小数)

Sample Input Copy

50

Sample Output Copy

122.00