public class Leader { String name; int distance; Leader(String name, int distance) { this.name = name; this.distance = distance; } }