package hw01;

public class Tester2{

	public static void main(String[] args) {

		Account acct1 = new Account(500.0);
		Account acct2 = new Account(1000.0);

		acct1.report();
		acct2.report();

		acct1.deposit(100);
		acct2.deposit(200.00);

		acct1.report();
		acct2.report();

		acct1.withdraw(550.00);
		acct2.withdraw(2000.00);

		acct1.report();
		acct2.report();
	}
}



