Computer Science, asked by jagmeetkaur414, 4 months ago

write a program that multiplies two integer numbers without using the * operator, using repeated addition.

please don't spam.
give the correct answer or please don't say any useless stuff.​


gagan0deep0: hi

Answers

Answered by dhia9063
0

Answer:

your answer is I am given in the picture

please mark the brain leat answer

Attachments:
Answered by Anonymous
2

Answer:

hello, its a python program

Explanation:

#program that multiplies two integer numbers without using the * operator, using repeated addition

a=int(input("enter the first number"))

b=int(input("enter the second number"))

prod=0

for i in range(b):

   prod+=a

print(prod,"is the product")

hope it helps you

please mark brainliest

@ItzSnowySecret07

Similar questions