public static void Main(string[] args)
Console.Write("Enter temperature in Celcius: ");
Celsius= int.Parse(Console.ReadLine());
Kelvin= Celsius + 273.15;
Fahrenhiet= Celsius *1.8 + 32;
Console.WriteLine("Celsius to Kevin: " + Kelvin);
Console.WriteLine("Celsius to Fahrenhiet: " + Fahrenhiet);