size = input("What size pizza do you want? S, M, or L ")
addpepperoni = input("Do you want pepperoni? Y or N ")
extracheese = input("Do you want extra cheese? Y or N ")
S = 15 
M = 20
L = 25 
N = 0
if size == S: 
    if addpepperoni == N:
        if extracheese == N:
            bill = S 
            print ("cool")
Just testing it out to see if anything prints but nothing prints, not even an error. What am I doing wrong here?
 
     
     
     
     
     
    