Help me in solving SYNN4 problem

My issue

My code

#include <stdio.h>

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

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

In C language you can’t use direct operations it results an error, so instead you can use:
code:
int main(){
x=3+4;
y=2+1;
printf(“%d\n”,&x);
printf(“%d\n”,&y);
return 0;
}