using System;
public class GFG{
static public void Main()
{
int N1;
Console.WriteLine("enter the number you want to be cubed");
N1 = Convert.ToInt16(Console.ReadLine());
double pow_tt = Math.Pow(N1, 3);
Console.WriteLine(" the total is " + pow_tt);
}