#include<stdio.h>


int main()
{
    //Write a C program to check whether a number is divisible by 5 and 11 or not
    int inp;
    printf("Aajao lets check it, bas number daalo idhar : ");
    scanf("%d", &inp);
   
    if( inp%5==0 && inp%11 == 0 )
    {
        printf("Yes it is...");
    }

    else
    {
        printf("Sorry dood thats a wrong click. ");
    }    
    return 0;
}