Help me in solving GSCP08 problem

My issue

0utput is right but its telling wrong

My code

//fill the _ in the IDE to continue
#include <stdio.h>

int main() {
    char A[10], B[10];
    char C[10], D[10], E[10];
    char F[10], G[10],H[10],I[10];
    scanf("%s,%s", A , B );
    scanf("%s%s%s", C, D, E );
    scanf("%s%s%s%s%s", F , G, H, I );
    printf("%s %s %s %s %s %s %s %s %s ", A , B , C , D , E , F , G , H , I );  
    return 0;
}

Learning course: Logic Building in C
Problem Link: CodeChef: Practical coding for everyone

@harshithabv200
in scanning F,G,H,I u have used 5 %s instead of 4