#D5617. Celsius and Fahrenheit
Celsius and Fahrenheit
Celsius and Fahrenheit
In Japan, temperature is usually expressed using the Celsius (℃) scale. In America, they used the Fahrenheit (℉) scale instead. degrees Celsius is roughly equal to degrees Fahrenheit. A phrase such as "Today’s temperature is degrees" is commonly encountered while you are in America.
A value in Fahrenheit can be converted to Celsius by first subtracting and then multiplying by . A simplified method may be used to produce a rough estimate: first subtract and then divide by . Using the latter method, Fahrenheit is converted to Centigrade, i.e., .
Make a program to convert Fahrenheit to Celsius using the simplified method: .
Input
The input is given in the following format.
The input line provides a temperature in Fahrenheit (), which is an integer divisible by .
Output
Output the converted Celsius temperature in a line.
Examples
Input
68
Output
19
Input
50
Output
10
inputFormat
Input
The input is given in the following format.
The input line provides a temperature in Fahrenheit (), which is an integer divisible by .
outputFormat
Output
Output the converted Celsius temperature in a line.
Examples
Input
68
Output
19
Input
50
Output
10
样例
68
19