Competency Assessmenton convertion
Given a Fahrenheit temperature, convert that temperature to its Celsius and Kelvin equivalents. A user enters in a Fahrenheit temperature, and gets back two values:
Celsius temperature
Kelvin temperature
The code routine will accept one argument, tempFahrenheit and calculates two values, tempCelsius and tempKelvin.
It will use two procedures internally.
ConvertFahrenheitToCelsius will convert a Fahrenheit temperature to Celsius, ConvertFahrenheitToKelvin will convert a Fahrenheit temperature to Kelvin.
Use these variable and routine names in your solution.