can u debug this program
/* this is my code I want total legderbalance and individual account balance */ class Account { String CustName; int AccNo; double AccBal; static double LegenderBal; Account(String arg1,int arg2,double arg3) { CustName=arg1; AccNo=arg2; AccBal=arg3; } void deposit(double Amt) { System.out.println("depositing "+Amt); AccBal=AccBal+Amt; LegenderBal=LegenderBal+Amt; } void withdrawl(double Amt) { System.out.println("withdrawing money "+Amt); AccBal=AccBal-Amt; LegenderBal=LegenderBal-Amt; } void CheckBalance() { System.out.println("The balance in the account is: " +AccBal); } static void LegendeBal() { System.out.println("The balance in the legnder is: " +LegenderBal); } } public class Main { public static void main(String[] args){ Account a1=new Account("Ramesh",8133,10000.00); a1.deposit(5000.00); a1.CheckBalance(); Account.LegendeBal(); Account a2=new Account("suresh",8300,25000.00) a2.withdrawl(10000.00); a2.CheckBalance(); Account.LegendeBal(); } }