Consider the following code snippet. There are a few questions (Questions 11, 12 and 13) that will use it.
x = int(input('Enter an integer: '))
if x < 7:
if x > 10:
print('G')
else:
print('H')
else:
if x < 9:
print('I')
print('J')
if x != 8:
print('K')
elif x + 1 < 5:
print('L')
else:
print('M')
Assuming that the user always provides valid input (an integer):
What is the minimum number of letters that will print? (each individual letter, such as A counts as 1)?
1
2
3
4
5