Help me in solving PPSC09 problem

My issue

How it is wrong answer?

My code

#include <stdio.h>

int main(void) {
	// your code goes here
printf("Output: %d + %d\n", 3, 4);

    // Output: 2 + 1 in a separate line
    printf("Output: %d + %d\n", 2, 1);

    return 0;
}


Learning course: CSEIPFOIA: Programming and Problem Solving
Problem Link: Outputs In Seperate Lines Practice Problem in CSEIPFOIA: Programming and Problem Solving - CodeChef