using System;
public class Program
{
public static void Main()
int x;
x=0;
Console.WriteLine(x);
while (x <20)
x = x - 4;
}