using System;
public class Program
{
public static void Main()
int aValue = 768;
int result;
result = aValue*aValue;
Console.WriteLine("{0} squared is {1}", aValue, result);
// Console.ReadKey();
}