using System;
public class Program
{
public static double x;
public static void Main()
for (int y = 1; y <= 30; y++)
x = Math.Pow(4,y);
Console.WriteLine(x);
}