//Listing 2.7 SavingsAccount.java public class SavingsAccount extends Account { public SavingsAccount(int accountNumber) { super(accountNumber); } }