class Father:
fname = ""
def father(self):
print(self.name)
class Mother:
mname = ""
def mother(self):
print(self.name)
class Child(Father, Mother):
def parents(self):
super().__init__()
print("Hello Everyone!!!")
print("Father :", self.fname)
print("Mother :", self.mname)
s1 = Child()
s1.fname = "Harry"
s1.mname = "Ginny"
s1.parent()