Help me in solving CLB025 problem

My issue

what is wrong in my code

My code

#include <stdio.h>

int main() {
    
    
	int length = 45;
	
	int width  = 76;
	
	int area = length * width; 
	
	printf("area is %d",area);
	
	
	return 0;
}


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

@sanskrutin10
U have to print the whole sentence like this


#include <stdio.h>

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

include
include <stdio.h>
using namespace std;

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

In C you dont have to use ‘using namespace std;’.
This is applicable only for C++.