Ad Code

Responsive Advertisement

1044 - Multiples

Author: Ismail Hosen

Daffodil International University





Problem Link

//Please follow from main function



#include<stdio.h>


int main()


{


    int a, b;


    scanf("%d %d", &a, &b);


    if(b%a==0 || a%b==0)


    {


        printf("Sao Multiplos\n");


    }


    else


    {


        printf("Nao sao Multiplos\n");


    }


    return 0;


}





Post a Comment

0 Comments