Help me in solving PPSC11 problem

My issue

not able to solve

My code

#include <stdio.h>

int main(void) {
	// your code goes here
	printf("area of the rectangle %d\n",11*13);
	printf("perimeter of the rectangle %d",2*(11+13));
	return 0;
}


Learning course: Complete C language course
Problem Link: Practice Problem in - CodeChef

@vennela_1
U have to do it like this

#include <stdio.h>

int main() {

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

  return 0;
}