hh.py 127 Bytes Edit 1 2 3 4 5 6 7 8 i=1 j=1 for i in range(1,i): for j in range(1,j): print(i,"*",j,"=",i*j,end="\n") j+=1 i+=1