public class Main { public static void main (String[] args) { Cars azatFirstCar = new Cars(); azatFirstCar.brand = "Mazda" ; azatFirstCar.year = 2005 ; azatFirstCar.color = "blue" ; Cars azatSecondCar = new Cars () ; azatSecondCar.color = "black" ; azatSecondCar.year = 2020 ; azatSecondCar.brand = "BMW" ; System.out.println(azatFirstCar.brand); System.out.println(azatSecondCar.brand); } } /* Output: Mazda BMW */