using System;
public class Program
{
public static void Main()
int t = 35;
if (t > 37)
Console.WriteLine("Остани у дома и се обади на лекар!");
else if (t <= 37)
Console.WriteLine("Отиди на училище!");
}