Help me in solving CLB008 problem

My issue

please solve this problem

My code

#include <stdio.h>

int main() {

    // add %d along with \n to print on two different lines
    print("the sum of 3 and 4 is:%d\n",3 + 4);
    printf("the sum of 1 and 2 is:%d\n", 1 + 2);
return 0;
}

Learning course: Programming and Problem solving using C
Problem Link: https://www.codechef.com/learn/course/ciet-programming-c/CIETPC02/problems/CLB008

here is the solution
include <stdio.h>

int main() {

// add %d along with \n to print on two different lines
printf("the sum of 3 and 4 is:%d\nthe sum of 1 and 2 is:%d",3 + 4, 1 + 2);

return 0;
}