public class MoneyRunner { public static void main(String[] args) { //create a BillFold with no money //make a second BillFold with $52.03 //add $5 to the first BillFold //remove $7 from the first BillFold (only $5 should actually be removed...) //print out the info for both BillFold's } }