using System;
public class Program
{
class Garage
private int [] cars;
public Garage() //konstruktor
cars= new car [50];
}
public void run()
class Car
private string owner;
private int plateNr;
private int worth;
private int spaceNr;
public Car (string _owner, int _plateNr, int _worth, int _spaceNr) //Konstruktor
owner = _owner;
plateNr = _plateNr;
worth = _worth;
spaceNr = _spaceNr;
public static void Main()
Console.WriteLine("Hello World");