#Q1
print("Q1: x ")
Q1 = ''
Q1 = input()
if Q1 ==("yes"):
print ('correct')
TOTAL = TOTAL + 1
elif Q1 ==("butt"):
print ("10 extra points")
TOTAL = TOTAL + 10
else:
print ('incorrect')
TOTAL = TOTAL - 1
print ('your points are ?...')
print (TOTAL)
#Q2
print("Q2: ")
Q2 = ''
Q2 = input()
if Q2 ==("yes"):
print ('correct')
TOTAL = TOTAL + 1
elif Q2 ==("butt"):
print ("10 extra points")
TOTAL = TOTAL + 10
else:
print ('incorrect')
TOTAL = TOTAL - 1
print ('your points are ?...')
print (TOTAL)