static void Main(string[] args) { account a = new account(1, "Vaibhav", 2000); account a1 = new account(2, "ajay", 3000); a.deposit(100); a.withdraw(200); a.display(); a1.deposit(1000); a1.withdraw(2000); a1.display(); }