int gcd(int m, int n) { if (n == 0) { return m; } return gcd(n, m % n); } --Back
programming.im.ncnu.edu.tw