import java.io.
*;
public class Saving_Ac
{
int acno;
double money= 33245.25,depo=0,draw=0,balance=0;
String name
public void withdraw1()throws IOException
{
InputStreamReader read = new InputStreamReader(System.in);
BufferedReader in = new BufferedReader(read);
System.out.println(welcome to ICICI bank);
System.out.println(Enter the account no.);
acno=Integer.parseInt(in.readline());
System.out.println(Enter the name of the a/c holder);
name=in.reaLline();
System.out.println(The present balance in your account is Rs+(money+depo-draw));
System.out.println(How much money do you want to withdraw ?);
draw=Float.parseFloat(in.readline ());
}
public void deposit()throws IOException
{
InputStreamReader read = new InputStreamReader(System.in);
BufferedReader in = new BufferedReader(read);
System.out.println(Welcome to ICICI bank);
System.out.println(Enter the account no.);
acno=Integer.parseInt(in.readline());
System.out.println(The present balance in your account is Rs.+(money+depodraw));
System.out.println(How much money do you want to deposit ?);
depo=Float.parseFloat(in.readLine());
}
public void display()
{
System.out.println(Welcome to ICICI bank);
System.out.println(The A/c no. :+acno);
System.out.println(The name of A/c holder :+name);
System.out.println(The balance in your account is Rs.+(money+depo-draw));
System.out.println(Thank you);
}
}