虽然gcd好写   但是万能头文件里面居然有  不用写

#include<bits/stdc++.h>
using namespace std;
int main()
{
    long long  a=1000,b=24;
    cout<<__gcd(a,b);
}