using System; namespace Rextester { public class Program { public static void Main(string[] args) { int t; Console.WriteLine ("Введіть температуру на дворі"); t = Convert.ToInt32 (Console.ReadLine ()); if (t <-20 || t> 40) Console.WriteLine ("Вам краще посидіти вдома!"); else Console.WriteLine ("Можете йти гуляти."); } } }