Im having trouble with this code Ive tried to fix it but I justt can't seem to figure out what the problem is can someone please help
def main():
print("~~~~~~~~~~~~~~~~~~~~~~~~~~~")
print("Welcome to the Movie Store!")
print("~~~~~~~~~~~~~~~~~~~~~~~~~~~")
budget = int(input("What is your budget?"))
print("Your budget is " + budget + "$.")
sale = (200 - budget)
if(budget < 200):
print("print("If you spend $" + sale + "you'll qualify for a gift!")
else:
print("You qualify for a free gift!")
main()
Error
---------------------------------------------------------------------------
TypeError Traceback (most recent call last)
<ipython-input-163-65823cbb31f3> in <module>
3 print("~~~~~~~~~~~~~~~~~~~~~~~~~~~")
4 budget = int(input("What is your budget?"))
----> 5 print("Your budget is " + budget + "$.")
6 sale = (200 - budget)
7
TypeError: can only concatenate str (not "int") to str