都没注意 递归的辗转相除法把函数名写丢了都能过
unsigned long long gcd(unsigned long long a,unsigned long long b) { if(!b) return a; return (b,a % b); }