using System;
public class Program
{
public static void Main()
int a = 3;
int b = 2;
Console.WriteLine(Math.Pow(a, b));
}