using System;
public class Program
{
public static void Main()
int counter = 0;
while (counter <= 50)
Console.Write( counter + " ");
counter+=10;
}
}// end class
}// end main