Objective
Develop a Python program that prompts the user for two integer numbers and displays their product without using the "*" operator. It should use consecutive additions. (Hint: remember that 3 * 5 = 3 + 3 + 3 + 3 + 3 = 15)
Example Python Exercise
Show Python Code
# Prompt the user to enter the first number
num1 = int(input("Enter the first number: "))
# Prompt the user to enter the second number
num2 = int(input("Enter the second number: "))
# Initialize the product variable
product = 0
# Use a while loop to calculate the product using consecutive additions
i = 0
while i < num2:
product += num1
i += 1
# Display the product
print(f"The product of {num1} and {num2} is {product}")
Output
Enter the first number: 3
Enter the second number: 5
The product of 3 and 5 is 15
Share this Python Exercise