quiz_score = 0

x = input("who won the superbowl this year")
if x == "Rams" or "LA Rams" or "Los Angeles Rams":
    print("That is correct")
    quiz_score += 1
else: 
    print("sorry that is not correct")


x = input("who is the quarter back on the seahawks")
if x == "Drew Lock" or x == "drew lock":
     print("Yes you got correct!")
     quiz_score +=1
else:
    print("that is not correct")

x = input("who is the quarter back on the rams?")
if x == "Matthew Stafford" or "matthew stafford":
    print("That is correct!")
    quiz_score +=1
else:
    print("That is not correct")

x = input("how many players are there on the field in a football game?")
if x == "22":
    print("that is correct")
    quiz_score += 1
else:
    print("that is not correct!")



print("Your test score is: " + str(quiz_score) + "/4")
That is correct
that is not correct
That is correct!
that is correct
Your test score is: 3/4