Help me in solving VADD7 problem

My issue

My code

//Update the blanks in the code below to solve the problem

#include <stdio.h>

int main() {
  length of side=14;
   area = 14 * 14 ;
   cost = 14 * 7 ;
  printf("%d\n",area);   //Area and cost have to be output on separate lines
  printf("%d", cost);      //'$' has to be printed after cost without any space
  printf("$"); 
  return 0;
}

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

include <stdio.h>

int main() {
int s = 14 ;
int area = s * s ;
int cost = area * 7 ;
printf(ā€œ%d \nā€, area ); //Area and cost have to be output on separate lines
printf(ā€œ%dā€, cost ); //'' has to be printed after cost without any space printf("");
return 0;
}