Help me in solving PYTH54 problem

My issue

My code

# Update your code below this line

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

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

@shreyasingh102
Reading the problem statement and sample input/output can help you understand what the problem statement wants and what is to be printed.

In this particular problem, we need to calculate sum and difference of two variables, a and b and print the respective reults.

Here is my code for reference.

# Update your code below this line

a = int(input())
b = int(input())
Sum=a+b
diff=a-b
print("Sum is:", Sum)
print("Difference is:", diff)