Help me in solving CPRACREARR1 problem

My issue

Rearrange the following code
include <stdio.h>
int main() {
int a,b,c;
printf(“%d”, c);
scanf(“%d”, &a);
c = a + b;
scanf(“%d”, &b);
return 0;
}

Learning course: Practice C
Problem Link: Rearrange Code Practice Problem in C - CodeChef

@rahmanshaik
This will be the correct rearrangement

#include <stdio.h>
int main() {
    int a,b,c;
    scanf("%d", &a);
    scanf("%d", &b);
    c = a + b;
    printf("%d", c);
    return 0;
}