int gcd(int a, int b){
int mod = 0;
while((mod = a % b)){
a = b;
b = mod;
}
return b;
}

이 부분을 다시 상기시켰다.

+ Recent posts