I am very new to programming and I've just been learning to write basic python using sublime text and running my code though the sublime python system build. I am trying to write a basic VAT calculator that will take user input and add the amount of 20% on the subtotal. Here is the code:
subtotal = float(input("Enter the #: "))
vat = float(1.2)
total = subtotal*vat
print(total)
However when I run this, the program spits nothing back. Would appreciate any help on this as I am a newbie.
Thank you