Help me in solving CLB007 problem

My issue

Print 3 + 4

My code

#include <stdio.h>

 void main()
 {
int a=3,b=4;
scanf("%d%d",a,b);

print("%d",a);
if(b==4)
printf("%d",b);

printf("%d",a + b);
	
}


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

@jasvi_123
U have to do simply like this

#include <stdio.h>

int main() {

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

  return 0;
}