#include <stdio.h>
int main()
{
int num;
printf("Enter any number: ");
scanf("%d", &num);
if(num%5==0 && num%11==0)
{
printf("%d is divisible by both 5 & 11\n", num);
}
else
{
printf("Not divisible by 5 and 11\n");
}
return 0;
}
No Comments