算法程序:#includevoid main(){int a,b;printf("input a,b: (a>b)\n");scanf("%d,%d",&a,&b);if(a%b==0) printf("OK\n");else printf("FALSE\n");}