using System;
public class Program
{
public static void Main()
var power = Math.Pow(4, 3); //Find power using Math.Pow
Console.WriteLine(power);
}