x = 25
if x > 10:
print('big')
print('it is big')
print('done')
x = 2
if x > 10:
print('big')
print('it is big')
print('done')
x = 25
if x > 10:
print('big')
print('it is big')
else: # x <=10
print('small')
print('it is small')
print('done')
x = 7
if x > 10:
print('big')
print('it is big')
else: # x <=10
print('small')
print('it is small')
print('done')
x = 15
if x > 10:
print('big')
print('it is big number')
elif x < 5: # x <= 10
print('small')
print('it is small')
else:
print('between 5 and 10')
print('done')
x = 7
if x > 10:
print('big')
print('it is big number')
elif x < 5: # x <= 10
print('small')
print('it is small')
else:
print('between 5 and 10')
print('done')
x = 3
if x > 10:
print('big')
print('it is big number')
elif x < 5: # x <= 10
print('small')
print('it is small')
else:
print('between 5 and 10')
print('done')