Provide the code for the given program:
Program: Write a JAVA program that finds the temperature that is the same in both Celsius and Fahrenheit.
Your program should create two integer variable for the temperature in Celsius and Fahrenheit.
Initialize the temperature to 100 degrees Celsius.
In the loop decrement the Celsius value and compute the corresponding temperature in Fahrenheit until the two values are the same.
How to prepare a program to find the temperature? Write this Program using java programming concepts.