#Store a value in x
x = 5

# Check if x is equal to 5
if x == 5:
    print('x is equal to 5')
else:
    print('x is not equal to 5')