using System;
namespace Ex
{
public class Program
/*
טענת כניסה: התוכנית מגדירה משתנה שלם בשם
side
ומציבה לתוכו אורך צלע של ריבוע
טענת יציאה: מחשבת ומדפיסה את שטח והיקף הריבוע
*/
public static void Main (string[] args)
int side=3,area,per;
area = side*side; //שטח
per = 4*side; //היקף
Console.WriteLine ("the area is: " + area);
Console.WriteLine ("the ekef is: " + per);
}