using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Zadanie
{
class Cars
public int numbers;
public string brand;
public double price;
public Cars (int numbers, string brand,double price)
this.numbers = 1241;
this.brand = "Seat";
this.price = 12345.51;
}
public void Numbers
get{return this.numbers;}
set{this.numbers = value;}
public void Brand
get{return this.brand;}
set{this.brand = value;}
public void Price
get{return this.price;}
set{this.price = value;}
set{numbers = 1234;}
get{price = 12345.12}
public void Display();
Console.WriteLine(numbers);
Console.WriteLine(brand);
Console.WriteLine(price);