Taigar2000

Task D

Oct 15th, 2020
2,281
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.18 KB | None | 0 0
  1. m1, m2 = map(int, input().split())
  2. n1, n2 = map(int, input().split())
  3. for i in range(m1, m2+1):
  4.     for j in range(n1, n2+1):
  5.         print(i, 'x', j, '=', i*j, sep=' ')
  6.     print()
  7.  
Advertisement
Add Comment
Please, Sign In to add comment