#31270: Candy


oh_my_god (often)

學校 : 臺中市私立明道高級中學
編號 : 196962
來源 : [36.232.167.246]
最後登入時間 :
2025-09-20 18:38:30

#include <stdio.h>
#include <stdlib.h>
int main()
{
    int c,s;
    scanf("%d%d",&c,&s);

     if(s==0)
    {
        printf("OK!");
    }

    else if(c%s==0)
    {
        printf("OK!");
    }
    
    
    else if(c>0&&s>0)
    {  
        printf("%d",c%s);
    }
    return 0;
}