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