using System;
public class Program
{
public static void Main()
/*convert from celsius degrees to Kelvin and Fahrenheit*/
double cel, kel, fah;
Console.WriteLine("Enter the degree of celsius you want to convert to K and F");
cel = double.Parse(Console.ReadLine());
/*formula*/
kel = cel + 273.15;
fah = (cel * 9/5) + 32;
Console.WriteLine("Celsius to Kelvin =" +kel);
Console.WriteLine("Celsius to Fahrenheit =" +fah);
}