public static void Main()
Console.WriteLine("Input temp= ");
int temp = int.Parse(Console.ReadLine());
Console.WriteLine("The temperature is negative!");
if (temp >= 0 && temp <= 25)
Console.WriteLine("The temperature is perfect!");
Console.WriteLine("The temperature is too high!");