fork download
  1. # your code goes here
Success #stdin #stdout 0.03s 9600KB
stdin
for i in range(1,10):
    for j in range(1,i+1):
        print("{}*{}={:2}".format(j,i,i*j),end='')
 
    print('')
stdout
Standard output is empty