using System;
public class Program
{
public static void Main()
Console.WriteLine("3^6="+Math.Pow(3,6));
}