Search posts...
class Solution { public int solution(int num, int n) { return num%n==0?1:0; } }
silver