using System;
public class Program
{
public static void Main()
for ( int n = 0; n <= 100; n++){
if (n % 3 == 0)
Console.WriteLine(n);
}