Nested Conditionals
x = 5
if x > 0:
if x < 10:
print("x is between 0 and 10")
else:
print("x is greater than or equal to 10")
x is between 0 and 10
x = 5
if x > 0:
if x < 10:
print("x is between 0 and 10")
else:
print("x is greater than or equal to 10")
x is between 0 and 10