using System;
public class Program
{
public static void Main()
//Declaration
int counter;
Console.WriteLine();
for (counter = 50; counter >= 0; counter = counter -= 10)
Console.Write( counter + " ");
}
}// end class
}// end main