a=int(input()) for b in range(10): print(str(a)+"x"+str(b)+"="+str(a*b)) This is the Python code to print 10 times table for a number that a person types. It is giving error because the code has no comma.