A programmer has written a section of code to determine if a sports team qualifies for bonus points.
1 score = int(input("Enter team score: "))
2 has_foul = input("Did they commit a foul? (Y/N) ")
3 if score > 10 and has_foul == "N":
4 print("Bonus points awarded!")
Give the logical operator used in line 3 of this code.