My issue
My code
#include <stdio.h>
int main() {
int t,x,y;
scanf("%d",t);
scanf("%d",&x);
scanf("%d",&y);
printf("%d",t);
if(x+y>6){
printf("yes");
}
else{
printf("no");
}
return 0;
}
Problem Link: GDTURN Problem - CodeChef