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
print('Sum is',Sum)
print('diff is', diff)

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

a = int(input())
b = int(input())
print(“Sum is:”,a+b)
print(“Difference is:”,a-b)