Answer:
number1 = int(input("Enter the first number: "))
number2 = int(input("Enter the second number: "))
result = 0
for i in range(number1):
result += number2
print(str(result))
Explanation:
Ask the user for two numbers
Initialize result as 0 to hold the multiplication of the numbers
Create a for loop that iterates "number1" times. In each iteration, add number2 to the result.
When the loop is done, print the result
Yes you should install drives first
True
…………………………………………………..
Answer:
A,B,D
A. Allows you to be sure the problem and solution are understood
B. Presents the solution in a manner that is easy to share
C. Is a starting point for all other activities