public class Car { String name; int speed; public Car(String name, int speed) { this.name = name; this.speed = speed; } }