1) Выдает ошибку "aborting" 2) Где должен располагаться метод main? public class Cars { private String model; private int cost; Cars(int cost, String model) { this.cost = cost; this.model = model; } } class Solution { public static void main(String[] args) { Cars cars = new Cars(100000, "жигули"); } }