Since the array is made up of Account objects, you will need to access the data through methods in that class. Something like getBalance, getTotal..... After you have that method, it's pretty straightforward.
//assuming that the getBalance method returns an int
int total = accs[0].getBalance() + accs[1].getBalance();