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