What does this code print in the console?
x = 18
if x > 10:
if x > 15:
print('A')
else:
print('B')
else:
print('C')
What does this code print in the console?
x = 18
if x > 10:
if x > 15:
print('A')
else:
print('B')
else:
print('C')