using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ConsApp1_cw1 { internal class Program { static void Main(string[] args) { int x, y, z; //wymiar x x = 8; //wymiar y y = 12; //pole prostokata x,y z = x * y; //pokaz wynik Console.WriteLine("Pole prostokata: {0}", z); } } }