Help me in solving GSCP06 problem

My issue

why i am getting output 100 instade of 123

My code

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

int main() {
    int a, b, c;
    
    scanf("%d", &a , &b , &c );
    printf("%d %d %d",a, b, c);
  
    return 0;
}

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

@mitaoe385
u have to do it like this

//Solution as follows
#include <stdio.h>

int main() {
    int A, B, C;
    scanf("%d%d%d", &A , &B , &C );
    printf("%d %d %d", A, B, C);
  
    return 0;
}