using System;
public class Program
{
public static void Main()
Console.WriteLine("Enter the temperature ");
float temp = float.Parse(Console.ReadLine());
if (temp <= 25)
Console.WriteLine("The weather is good. Enjoy your day!");
}
else
Console.WriteLine("The weather is hot. Make sure to stay hydrated. ");