Computer Science, asked by DollySingh231206, 4 months ago

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 atulkumargpt
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 ak1466733
0

Answer:

give answer of 4 part pls i want that

Similar questions