import java.util.ArrayList; import java.io.BufferedReader; import java.io.InputStreamReader; public class banking { static class Account { public String number = null; public double amount; public Account(String n, double a) { number = n; amount = a; } } static ArrayList accounts = new ArrayList(); public static void main(String[] args) { try { //String[] commands = new String[4]; BufferedReader in = new BufferedReader(new InputStreamReader(System.in)); String[] newAccounts = new String[2]; do { String line = in.readLine(); int iac = Integer.parseInt(line); if (iac == 0) break; for(int i=0; i