public static void Main()
int tempCels, tempKelvin, tempFah;
Console.Write("Enter the amount of Celsius: ");
tempCels = Convert.ToInt32(Console.ReadLine());
tempKelvin = Convert.ToInt32(tempCels + 273.15);
tempFah = Convert.ToInt32(tempCels * 1.8 + 32);
Console.WriteLine("Kelvin = " + tempKelvin);
Console.WriteLine("Fahrenheit = " + tempFah);