using System;
public class Program
{
public static void Main()
int counter;
int intSquare;
int intCube;
for (counter = 1; counter <= 10; counter++)
intSquare = counter * counter;
intCube = counter * counter * counter;
Console.WriteLine(counter + ", " + intSquare + ", " + intCube);
}
Console.ReadLine();