There is a class named Account. It includes three fields: id, code and balance.
Override the method toString() in this class. The method should return a string representation of an instance of the Account.
Do not make the Account class public.
Example
Account{id=10, code='123-456-789', balance=2000}