using System;
namespace ForLoop
{
class Program
static void Main(string[] args)
for (var i = 50; i >= 0; i -= 3)
Console.WriteLine(i);
}