Ive made up this program to workout the costs of old and new movies at a video store by adding them together for some uni homework. It works and all, Just wondering if there is something that could use changing or tweaking ? Thank you in advance !!Â

New = 3.00 Oldie = 2.00 NewMovie = int(input("Enter the amount of new movies:")) OldMovie = int(input("Enter the number of old movies:")) NewAmount = New * NewMovie OldieAmount = Oldie * OldMovie TotalAmount = NewAmount + OldieAmount print("The Total amount is $" + str(TotalAmount))