Help me in solving CLB001 problem

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

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.