Help me in solving ONEFULPAIRS problem

My issue

include <stdio.h>

int main(void) {
int a,b,c;
scanf(“%d %d,&a,&b”);
c=a+b+(a*b);
if(c==111){
printf(“YES”);
}
else{
printf(“NO”);
}
return 0;
}
why my this code is showing no for input 1 and 55 ?

My code

#include <stdio.h>

int main(void) {
	int a,b,c;
	scanf("%d %d,&a,&b");
	c=a+b+(a*b);
	if(c==111){
	    printf("YES");
	}
	else{
	    printf("NO");
	}
	return 0;
}


Learning course: Practice C
Problem Link: CodeChef: Practical coding for everyone

@nandit23it065
U have done mistake in putting “” in scanf statement.

Yes brooo thanks I got it