My issue
where is input?
My code
#include <stdio.h>
int main(void) {
// your code goes here
return 0;
}
Learning course: Learn C
Problem Link: CodeChef: Practical coding for everyone
where is input?
#include <stdio.h>
int main(void) {
// your code goes here
return 0;
}
Learning course: Learn C
Problem Link: CodeChef: Practical coding for everyone
include <stdio.h>
int main(void) {
// your code goes here
int n;
scanf(ā%dā,&n);
return 0;
}
implement code in main function with necessary step.