1num = int(input('Which table you need write it here:'))
2
3starting_range = int(input('write the number from where to start:'))
4ending_range = int(input('write the end of the number you need:'))
5print()
6print('So This is the table of', num)
7for i in range(starting_range, ending_range + 1):
8 print(num, 'x', i, '=', num*i)
9