🐍 Arrange the blocks to form a correct If-Else statement

if
number % 2 == 0:
print("Even")
else:
print("Odd")

Your Python Code Output: