Help me in solving SYNN7 problem

My issue

i have a problem with printf

My code

#include <stdio.h>

int main() {
  printf("%d", 11 * 13 );
  scanf("%d", 2*(11 + 13));
  return 0;
}

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

@shubhi2003t
U don’t have to use scanf , Just use printf to print things .
Like this

#include <stdio.h>

int main() {
  printf("%d \n", 11 * 13 );
  printf("%d", 2*(11 + 13));
  return 0;
}