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