Help me in solving CLB025 problem.

My issue

include <stdio.h>

int main(void) {
// your code goes here
int length=45;
int width=76;
int area;
area=length * width;
printf(“The area of the given rectangle is%d”,area);
return 0;
}

My code

#include <stdio.h>

int main(void) {
	// your code goes here
	int length=45;
	int width=76;
	int area;
	area=length * width;
	printf("The area of the given rectangle is%d",area);
	return 0;
}


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

Add a Space after is at the printf() function.
printf(“The area of the given rectangle is %d”,area);