#include<stdio.h>
int main()
{
int x,y;
printf("enter no1\t");
scanf("%d",&x);
printf("enter no2\t");
scanf("%d",&y);
if (y%x==0){
printf("first one is devided by second");
}
else {
printf("it is not devided properly from second");
}
}
No comments:
Post a Comment
please wait...