Help me in solving CLB025 problem

My issue

I am not able to find error in this whole program

My code

#include <stdio.h>

int main() 
{
    
	int length = 45;
	int width = 76;
	int area = length*width;

	
	printf("The Area of given rectangle is %d", area);

	return 0;
}


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

@tishasimejia11
U missed “the” in the printf statement.