Help me in solving PYTH08 problem

My issue

How to print 3+4 1+2 on the same line

My code

# Update the '_' in the code below to provide the following outp        print(3+4)
print ("2+1","3+4", sep=' ')

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

@ashamoparthi
U have to do it like this.

# Solution as follows

print(3 + 4, 2 + 1)

printf(“3+4 1+2”);
Hope this will be helpful :hugs: