Computer Science, asked by vr14452, 6 months ago

Write a program that multiplies two integer numbers without using the * operator, using
Repeated addition using while statement.

Answers

Answered by RuwaisnZaid
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