gcd怎么用?gcd怎么用?gcd怎么用?
gcd
int gcd(int x,int y){ if(y==0){ return x; } return gcd(y,x%y); }
求a,b的最大公约数
`