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