}
}
}
public static void main(String[] args) {
Console con = System.console();
FootballManager manager = new FootballManager(System.console());
con.printf(initialPrompt);
while (true) {
String action = con.readLine(">");
if ("at".equals(action)) {
manager.addTeam();
} else if ("ap".equals(action)) {
manager.addPlayers();
} else if ("rt".equals(action)) {