Écrivez un programme Python pour trouver le tableau d'un nombre en utilisant While Loop

a=int(input("enter table number"))
b=int(input("enter the number to which table is to printed"))
i=1
while i<=b:
    print(a,"x",i,"=",a*i)
    i=i+1
Dangerous Dolphin