Help me in solving PYTH08 problem

My issue

Update the ‘_’ in the code below to provide the following output

Output: 3 + 4

Output: 2 + 1 on the same line

My code

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

output:('3 + 4, 2 + 1')

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

print(3 + 4, 2 + 1, end=" ")

using end=" " would enable the program to print on the same line with a space in between