My issue
My code
#include <stdio.h>
int main() {
int length = 45 ;
int width = 76;
int area = length* width;
printf("The Area of the given rectangle is=%d",area );
return 0;
}
Learning course: Learn C
Problem Link: CodeChef: Practical coding for everyone