Help me in solving CLB101 problem

My issue

Could you please help me in solving the problem

My code

#include <stdio.h>

int main(void) {
	int n,i;
	scanf("%d",&n);
	for(i=1;i<11;i++)
	{
	    printf("%d*%d=%d\n", n, i, n*i);
	}
	return 0;
}


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

include <stdio.h>

int main(void) {
// your code goes hereint n,i;
int n,i;
scanf(ā€œ%dā€,&n);
for(i=1;i<11;i++)
{
printf(ā€œ%d x %d = %d\nā€,n,i,n*i);
}
return 0;
}

You can try this code instead