Problem
Write an Ada program that converts a Celsius temperature to its Fahrenheit equivalent. The formula is
Fahrenheit = (9/5) Celsius +32
Make the centigrade temperature a constant so that its value can be changed easily. The program should print both the value of the centigrade temperature and its Fahrenheit equivalent, with appropriate identifying messages. Use comments, with meaningful identifiers, and indentation.