Help me in solving PYTH54 problem

My issue

My code

# Update your code below this line

a = int(input())
b = int(input())

sum = a + b
diff = a - b

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

@sambit27
U have to print sun and diff like this as well.

# Solution as follows

a = int(input())
b = int(input())

sum = a + b
diff = a - b

print("Sum is:", sum)
print("Difference is:", diff)
``