Feedback for GSCP07 problem

Learning course: C for problem solving - 1
Problem Link: CodeChef: Practical coding for everyone

Feedback

This is my code

//Update the blanks below to solve the problem
#include <stdio.h>

int main() {
    int A, B;
    int C, D, E;
    int F, G,H,I;
    scanf("%d %d", &A , &B );
    scanf("%d %d", &C, &D, &E );
    scanf("%d %d %d %d", &F, &G, &H, &I );
    printf("%d %d %d %d %d %d %d %d %d", A , B , C , D , E , F , G , H , I );  
    return 0;
}

it gives wrong answer . I compared my code with give solution both are same . But with my code i am getting wrong answer but with the given solution code the answer is correct. Please check the issue

Check this line

    scanf("%d %d", &C, &D, &E );

You have only 2 %d instead of three, for three variables.