Help me in solving PYTH07 problem

My issue

My code

# Update the '_' in the code below to output the following 
# Output: 3 + 4
# Output: 2 + 1

print("3 + 4")

print("2 + 1")

Learning course: Learn Python
Problem Link: CodeChef: Practical coding for everyone

print(3+4)
print(2+1)