using System;
public class Program
{
public static void Main()
//Declaration
int counter = -20;
do
Console.WriteLine( counter + " ");
counter+= 10;
}while ( counter <= 20);
}// end main
}// end class