Help me in solving SYNN3 problem

My issue

My code

#include <stdio.h>

int main() {
 printf("%d", 3 + 4 );
  printf("%d", 2 + 1);
  return 0;
}

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

hey deepu first you need to wirte your problem.

anyway no problem iam here to help you out

include <stdio.h>

int main() {
printf(“%d”, 3 + 4 );
from the above line we can get the output “7” right. in the given statement they asked to print together.
printf(“%d”, 2 + 1);
from the above line wen can get the output “3”.
using “%d” we can print those together
output = 73
return 0;
}

THANK YOU :blush: