Hey i need help debugging this i spent a while but couldn’t spot it. The error is typeerror: input expected at most 1 argument, got 5. Python
import random
score = 0
for i in range(5):
num1 = random.randint(1, 100)
num2 = random.randint(1, 100)
answer = int(input("What is", num1, "+ ", num2, "?"))
result = (num1 + num2)
if answer == result:
print("Well done!")
score += 1
else:
print("incorrect")
print("Your score was", score)