Advertisement
Taigar2000

Таблица умножения

Dec 15th, 2020
696
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.17 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()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement