505.py 104 Bytes Edit 1 2 3 4 for i in range(1,10,1): for j in range(1,10,1): print(i,"*",j,"=",i*j,end="") print()