Help me in solving CLB077 problem

My issue

My code

#include <stdio.h>

int main(void) {
	// your code goes here
	return 0;
}


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

declare two variable a and b and initialise them to the values … a = 15 and b = 35…
after that check each of a and b is divisible by both 7 and 5… if it is divisible then print
number is divisible by both 5 & 7 … otherwise print
number is not divisible by both 5 & 7 …

include <stdio.h>

int main(void) {
int a = 15 , b = 35;
if(a%7 == 0 && a%5 == 0 ){
printf(“The number is divisible by both 5 & 7\n”);
}
else{
printf(“The number is not divisible by both 5 & 7\n”);
}
if(b%7 == 0 && b%5 == 0 ){
printf(“The number is divisible by both 5 & 7\n”);
}
else{
printf(“The number is not divisible by both 5 & 7\n”);
}
return 0;
}