Skip to content
orange8637 edited this page Jun 7, 2012 · 4 revisions
 int gcd(int x, int y)
 {
     return y==0 ? x : gcd(y,x%y);
 }

Clone this wiki locally