# your code goes here b=[1,2,3,4] a=[1,2,3,4] for e in a: for j in b: print(e,'×',j,'=',e*j)
Standard input is empty
1 × 1 = 1 1 × 2 = 2 1 × 3 = 3 1 × 4 = 4 2 × 1 = 2 2 × 2 = 4 2 × 3 = 6 2 × 4 = 8 3 × 1 = 3 3 × 2 = 6 3 × 3 = 9 3 × 4 = 12 4 × 1 = 4 4 × 2 = 8 4 × 3 = 12 4 × 4 = 16