1-Declare a class that describes a person. The class should have the following instance variables: - name: String - age: double - id: long - street: String - city: String The class should have at least two different constructors and the method details that print the person details. You should test this class by instantiating it and check the details method.