Help me in solving CLB025 problem

My issue

the output is correct but it is showing nothing, then again after submission it says it is wrong

My code

#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;
}


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

@coldwinds003
plzz retry it cozz your is working absolutely fine for me.

It is fundametally correct…but i think it maybe because you have wrote your code above the comment - ‘// your code goes here’. Try moving the comment above the code you have written.