def mul(a,b):# define a function to multiply two user input numbers print("Product of ",a,"and",b,"is =",a*b) a=int(input("Enter first number\n"))#asking user to ...