using System;
public class Test
{
public static void Main()
int a = int.Parse(Console.ReadLine());
int b = int.Parse(Console.ReadLine());
if ((a + b) % 2 == 0)
Console.WriteLine("Сумма чисел четная");
else
Console.WriteLine("Сумма чисел нечетная");
}
using System;
public class Test
{
public static void Main()
{
int a = int.Parse(Console.ReadLine());
int b = int.Parse(Console.ReadLine());
if ((a + b) % 2 == 0)
Console.WriteLine("Сумма чисел четная");
else
Console.WriteLine("Сумма чисел нечетная");
}
}