Help me in solving GSCP06 problem

My issue

how can i print same output as input

My code

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

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

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

@dakshsood343
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;
}