Help me in solving CLB007 problem

My issue

Output: 3 + 4
Output: 2 + 1.

My code

#include <stdio.h>

int main(void) {
     printf("%n/n", 3+4);
     printf("%f/n", 2+1);
	return 0;
}


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

@titu5120
U have to do it like this

#include <stdio.h>

int main() {

  printf("%d",3 + 4);
  printf("%d",2 + 1);

  return 0;
}