class calculator:
def init(self):
self.calcul()
def calcul(self):
self.number=int(input("enter please an integer number"))
for i in range(11):
print(self.number*i)
a=int(input("ente pllease the number of the numbers you want to enter"))
for i in range(a):
c=calculator()
class calculator:
def init(self):
self.calcul()
def calcul(self):
self.number=int(input("enter please an integer number"))
for i in range(11):
print(self.number*i)
a=int(input("ente pllease the number of the numbers you want to enter"))
for i in range(a):
c=calculator()