'''what would be the output of below python code var=200'''
var=200
if(var>200):
print("within first block")
if(var==150):
print("which is 150")
elif(var==100):
print("which is 100")
elif(var>50):
print("within second block")
if(var%5==0):
print("which is multiple of 5")
elif(var%10==0):
print("which is multiple of 10")
else:
print("neither multiple of 5 nor multiple of 10")
else:
print("could not find true expression")
print("Good bye!")
'''
OUTPUT
within second block
which is multiple of 5
Good bye!
'''