using System; namespace Rextester { public class Program { public static void Main(string[] args) { int a; Console.WriteLine ("Введіть число:"); a = Convert.ToInt32 (Console.ReadLine ()); if (a% 2 == 0) Console.WriteLine ("Число " + a + " - парне"); else Console.WriteLine ("Число " + a + " - непарне"); } } }