using System;
namespace Application
{
class MainClass
{
public static void Main (string[] args)
{
int x = 1;
int k = -1;
int b = 0;
while (x != 0) {
Console.WriteLine ("Введите число:");
x = Convert.ToInt32(Console.ReadLine ());
k++;
if (x > 0 && x < 23 && x % 2 == 0) {
b = b + x;
}
}
Console.WriteLine ("Длина последовательности: " + k);
Console.WriteLine ("Сумма положительных чётных чисел, не превосходящих 22: " + b);
Console.ReadLine ();
}
}
}