#D5617. Celsius and Fahrenheit

    ID: 4668 Type: Default 1000ms 268MiB

Celsius and Fahrenheit

Celsius and Fahrenheit

In Japan, temperature is usually expressed using the Celsius (℃) scale. In America, they used the Fahrenheit (℉) scale instead. 2020 degrees Celsius is roughly equal to 6868 degrees Fahrenheit. A phrase such as "Today’s temperature is 6868 degrees" is commonly encountered while you are in America.

A value in Fahrenheit can be converted to Celsius by first subtracting 3232 and then multiplying by 59\frac{5}{9}. A simplified method may be used to produce a rough estimate: first subtract 3030 and then divide by 22. Using the latter method, 6868 Fahrenheit is converted to 1919 Centigrade, i.e., (6830)2\frac{(68-30)}{2}.

Make a program to convert Fahrenheit to Celsius using the simplified method: C=F302C = \frac{F - 30}{2}.

Input

The input is given in the following format.

FF

The input line provides a temperature in Fahrenheit FF (30F10030 \leq F \leq 100), which is an integer divisible by 22.

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.

FF

The input line provides a temperature in Fahrenheit FF (30F10030 \leq F \leq 100), which is an integer divisible by 22.

outputFormat

Output

Output the converted Celsius temperature in a line.

Examples

Input

68

Output

19

Input

50

Output

10

样例

68
19