public static void Main()
Console.WriteLine("What is the weather like?");
string tempreture = Console.ReadLine();
if(int.TryParse(tempreture, out number))
Console.WriteLine("Value entered was no number");
Console.WriteLine("Take a coat");
Console.WriteLine("Pants and Pullovers should be fine");
Console.WriteLine("Shirts are enough today");