このクラスの使用:
class Person:
def __init__ (self, Name, Address, Phone, Height, Weight):
self.name = Name
self. Address = Address
self.Phone = Phone
self.Height = Height
self.Weight = Weight
self.PoundserPerInch = Height / Weight
引数「Height」と「Weight」を整数として取り込んで、それらに対して数学関数を実行するにはどうすればよいですか?