Help me in solving PYPRACREARR1 problem

My issue

You want to input two integers, and output their sum.

Rearrange the code given, so that it does the above task.

Rearrange the following code
print(c)
c = a + b
a = int(input())
b = int(input())

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

a = int(input())
b = int(input())
c = a + b
print(c)

First you take input of a and b. Then you add both a and b. Store it in c. Then print that c