public class TestAccount {

    public static void main(String[] args) {

        ChequingAccount myAccount = new BankAccount(123456,70);
        BankAccount yourAccount = new ChequingAccount(654321,100) ;

        /** instert your code here */
    }
}
