My issue
tell me the problem
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 %d", &C, &D, &E );
scanf("%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;
}
Learning course: Logic Building in C
Problem Link: CodeChef: Practical coding for everyone