My issue
My code
#include <stdio.h>
int main(void) {
// your code goes here
int x;
int y;
if (x+y>6){
printf("NO");
}else{
printf("YES");
}
return 0;
}
Problem Link: GDTURN Problem - CodeChef
#include <stdio.h>
int main(void) {
// your code goes here
int x;
int y;
if (x+y>6){
printf("NO");
}else{
printf("YES");
}
return 0;
}
Problem Link: GDTURN Problem - CodeChef
@mondalhyd2006
u have to scan the input x and y then condition should be x+y>6 then it would be yes not no