21 lines
333 B
C#
21 lines
333 B
C#
using System;
|
||
|
||
class Program
|
||
{
|
||
static void Main()
|
||
{
|
||
int a;
|
||
|
||
a = int.Parse(Console.ReadLine());
|
||
|
||
if (a % 2 == 1)
|
||
{
|
||
Console.WriteLine("Не чётное");
|
||
}
|
||
else
|
||
{
|
||
Console.WriteLine("Чётное");
|
||
}
|
||
Console.ReadKey();
|
||
}
|
||
} |