print("The number of eggs you have:")
egg = input()
print ("The number of breads you have:")
breads = input ()
total = int(egg) + int(breads)
print ("Your total is:" + str(int(total))
print("The number of eggs you have:")
egg = input()
print ("The number of breads you have:")
breads = input ()
total = int(egg) + int(breads)
print ("Your total is:" + str(int(total)))
你只是在最后一行少了一个')