define a Person class as follows:
1)contains four data fields: name,addr,sex,age
2)define a no-arg constructor and a constructor with all data fields
3)add a toString method
define a Student class extending Person class:
1) add new properties, math and english to denote the corresponding grade between 0 and 100
2)define a no-arg constructor and a constructor with all data fields
3)override toString method,which invokes toString method of Person class