Python - Conditional Statements
What is the output of this code?
num = 7
if num > 5:
if num < 10:
print('A')
else:
print('B')
else:
print('C')