4. Program to display the multiplication table of a number entered by the user, up to 10 times.
5. Program to display the multiplication table of m, up to n times, where the numbers m and n are
entered by the user. in loop unnecessary answer will be report
Answers
Answered by
4
Answer:
5)
#python
n = int(input("value of n = "))
m = int(input(" value of m ="))
for i in range(1,m+1):print(n*i)
Answered by
0
Answer:
give answer of 4 part pls i want that
Similar questions