Write a program that allows the user to enter a temperature and whether the temperature is stated in Celsius or Fahrenheit...or whether you want to convert Celcius to Fahrenheit or Fahrenheit to Celcius. If the given temperature is celsius...main() should call a method called convertToFahrenheit to convert and return the new Fahrenheit equivalent temperature. If the given temperature is fahrenheit...main() should call a method called convertToCelcius to convert and return the new Celsius equivalent temperature. Either way display the converted temperature and some output comments with it. Be sure to check your formulas to make sure they work. Have the user enter a number such as 1 to convert Celcius to Fahrenheit and 2 to convert Fahrenheit to Celcius.