Imagine that the variable x contains a number between 0 and 20. Rearrange the code blocks below to create a program that see if x is between 0 and 5, 5 to 10, 10 to 15, or between 15 and 20.
print("x is between 5 and 10")
elif x <= 15:
elif x <= 10:
print("x is between 0 and 5")
else:
if x <= 5:
print("x is between 10 and 15")
print("x is between 15 and 20")