Help me in solving PYTHCLOP05 problem

My issue

I don’t understand the task please explain it

My code

height1 = 15
height2 = 13
# Update the '_' below to solve the problem
print(height1 > height2)
print(height1 == height2)
print(height1!= height2)
print(height1 >= height2)
print(height1 <= height2)

Learning course: CEMP: Programming in Python
Problem Link: Relational Operators in CEMP: Programming in Python