public class Auto { String brand; int speed; Auto(String brand, int speed) { this.brand = brand; this.speed = speed; } public String getBrand() { return brand; } public int getSpeed() { return speed; } }