153k views
2 votes
Assume the user responds with a 3 for the first number and a 4 for the second number.

answerA = input("Enter a number. ")
answerB = input("Enter a second number. ")
numberA = int(answerA)
numberB = int(answerB)
result = (numberA * numberB) / 2
print ("The result is" , result)
What is the output?
The result is .

User Blaker
by
3.3k points

1 Answer

8 votes

Answer:

The result is 6.

Step-by-step explanation:

number A is 3 and number B is 4.

4*3/2=6

User Mir Mahfuz
by
3.8k points