Help me in solving PPSC47 problem

My issue

what is right answer?

My code

#include <stdio.h>

int main(void) {
	// your code goes here
    int length;
    int width;
    scanf("%d",&length);
    scanf("%d",&width);
    int area;
    area = length*width;
    
    printf("Area of rectangle is: %d",area);
    
return 0;
}


Learning course: CSEIPFOIA: Programming and Problem Solving
Problem Link: Find the Area of any rectangle Practice Problem in CSEIPFOIA: Programming and Problem Solving - CodeChef