score = 0

# Question 1
answer = input("Which NFL Logo is blue and red?")
if answer == "Buffalo Bills":
    print("Correct!")
    score += 1
else:
    print("Incorrect. The answer is Buffalo Bills.")

# Question 2
answer = input("Which NFL logo has an arrowhead?")
if answer == "Kansas City Cheifs":
    print("Correct!")
    score += 1
else:
    print("Incorrect. The answer is the Kansas City Cheifs.")

# Question 3
answer = input("Which NFL logo is similar to a lighting bolt? ")
if answer == "Los Angeles Chargers":
    print("Correct!")
    score += 1
else:
    print("Incorrect. The answer is the Los Angeles Chargers.")

print(f"You scored {score} out of 3.")
Correct!
Correct!
Incorrect. The answer is the Los Angeles Chargers.
You scored 2 out of 3.