PROGRAMMING:Fahrenheit to centigrade
Given a Fahrenheit temperature F, the program is required to calculate the corresponding centigrade temperature C. Calculation formula: C = 5 ×( F−32)/9。 Ensure that the input and output are in the range of integer.
###Input format:
Enter an integer for the Fahrenheit temperature.
###Output format:
Output an integer value, which indicates the calculated centigrade temperature.
###Input example:
```in
two hundred
```
###Output example:
```out
ninety-three
```
answer:If there is no answer, please comment
###Input format:
Enter an integer for the Fahrenheit temperature.
###Output format:
Output an integer value, which indicates the calculated centigrade temperature.
###Input example:
```in
two hundred
```
###Output example:
```out
ninety-three
```
answer:If there is no answer, please comment