using System;
public class Program
{
public static void Main(string[] args)
int a = 0;
while (a <= 9)
Console.WriteLine(a + ". " + Convert.ToInt16(Math.Pow(3, a)));
a++;
}