Consider the following code:
tests = [78, 86, 83, 80, 89, 92, 91, 94, 67, 72, 80, 95]
c = int(input("Cutoff value: "))
n = 0
for i in range(len(tests)):
if (tests[i] >= c):
n = n + 1

print("Values above " + str(c) + ": " + str(n))

What is output when the user enters 80?
1) Values above 80: 12
2) Values above 80: 9
3) Values above 80: 7
4) Values above 80: 5