Write a program
Input: 5,3,3; Output: 5,15,45
#From the question it is not clear what exatly he wants
#But the code that i wrote here can get the same output mentioned in the question
n = int(input("Input the first number: "))
i = int(input("Input the second number: "))
print(n, 'x', i, '=', n*i )
Comments
Leave a comment