14662 - Temperature Conversions   

Description

Write a program that converts a given temperature from Celsius to Fahrenheit.

The conversion formula is:

  • $F = C \times 1.8 + 32$

Where:

  • $C$ is the input Celsius temperature.
  • $F$ is the resulting Fahrenheit temperature.

You should round the result into an integer using int().

Input

A single integer $C$ representing the temperature in Celsius.

Constraints

  • $-100 \leq C \leq 100$

Output

A single integer $F$ representing the equivalent Fahrenheit temperature.

Sample Input  Download

Sample Output  Download

Tags




Discuss