using System;
public class Program
{
public static void Main()
int term = 3;
Console.WriteLine(term);
for(int i=1; i<=30; i=i+1)
term = term+3;
}