using System;
public class Program
{
public static void Main()
double fahrenheit = 102;
double celsius = (fahrenheit - 32) * 5 / 9;
Console.WriteLine("The temperature is " + fahrenheit + " degrees fahrenheit. In Celsius, the temperature is " + celsius + " degrees.");
}