Help me in solving CLB009 problem

My issue

include <stdio.h>

int main(void) {
printf(“area of a rectangle is %d \n”, 1113);
printf(“perimetre of a rectangle is %d”, (2
(11+13)));
return 0;
}
why this code is shown as wrong answer

My code

#include <stdio.h>

int main(void) {
	printf("area of a rectangle is %d \n", 11*13);
	printf("perimetre of a rectangle is %d", (2*(11+13)));
	return 0;
}


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

@manzoor2001in
U don’t need to print the statements just print the answer .
like this

#include <stdio.h>

int main() {

  printf("%d\n",11 * 13); 
  printf("%d",2 * ( 11 + 13 ));

  return 0;
}