Jetzt funktioniert die If-Abfrage nicht...
Bei Google bin ich nicht fündig geworden. Was mache ich falsch?

Code:
from random import randint
summand1 = randint(1,999)
summand2 = randint(1,999)
summe = summand1 + summand2
eingabe = input("Berechne die Summe aus %d und %d!" % (summand1, summand2))
if summe == eingabe :
print("Richtig!")
else:
print("Leider falsch!")
Bei Google bin ich nicht fündig geworden. Was mache ich falsch?
