using System;
namespace DemoLesson3
{
public static class DemoLesson3
static public void Main(string[] args)
int aValue = 789;
int result;
result = aValue * aValue;
Console.WriteLine("{0} squared is {1}", aValue, result);
}