Help me in solving RCPITCP30 problem

My issue

Give code please send

My code


#include <stdio.h>

int main() {
    int length, width, area;  // Declare variables for length, width, and area

    length = 45;              // Assign the value 45 to length
    width = 76;               // Assign the value 76 to width

    area = length * width;    // Calculate the area of the rectangle

    // Display the output with text and format the output as specified
    printf("The Area of the given rectangle is \n");
    printf("a\n");
    printf("r\n");
    printf("e\n");
    printf("a\n");
    printf("area = %d\n", area);  // Print the calculated area

    return 0; // Indicates successful execution of the program
}

Learning course: Learn C Programming
Problem Link: https://www.codechef.com/learn/course/rcpit-programming-c/RCPITLPC05/problems/RCPITCP30