The following program uses the Account class we
defined in class.
What does this program print?import csbsju.cs160.*; public class PrintHello { public static void main(String[] args) { Account a = new Account(); a.deposit(80.0); Account b = a; b.withdraw(20.0); b = new Account(); b.deposit(40.0); IO.println(a.getBalance()); } }