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
Answer:
It is a computer that is used to process analog data.
If you go to a college website you will see the it has .edu in the URL extensions.
Answer:
44%
Explanation: First, you have to divided 11 by 25. Which is 0.44. And then you multiply the quotient by 100 to get your percentage.