Write a program that multiplies two integer numbers without using the * operator, using
Repeated addition using while statement.
Answers
Answered by
0
Explanation:
x = # input no
y = #input no
if x < y :
smal= x
else :
small = y
for i in range(small):
x = x+x
print(x)
Similar questions
History,
2 months ago
Biology,
6 months ago
Math,
6 months ago
Environmental Sciences,
10 months ago
Math,
10 months ago