Help me in solving CLB018 problem

My issue

what is console here

My code

#include <stdio.h>

int main(void) {
//printf("%d\n%d",9*2,30/5);
printf("%d",9*2);
printf("%d",30/5);
	return 0;
}


Learning course: Learn C
Problem Link: CodeChef: Practical coding for everyone

include <stdio.h>

int main(void) {
// your code goes here
printf(ā€œ%d\nā€,9-2);
printf(ā€œ%dā€,30/5);
return 0;
}