Help me in solving GDTURN problem

My issue

My code

#include <stdio.h>

void main()
{
    int t,i;
    print("Enter Number Of test ");
    scanf("%d",&t);
    for(int i=0;i<t;i++)
    {
        int x,y;
        printf("Integer in dice x,y");
        scanf("%d%d",&x,&y);
        if(x+y>6)
            printf("YES");
       else
            printf("NO");
    }

}


Problem Link: GDTURN Problem - CodeChef

@ramvasanth
Your logic is correct
dont print the statement integer in dice and also print \n after each output to leave the line.