最大公约数-递归


#include
#include
using namespace std;

int gcd(int x, int y) {
  if (x==y) {
    return x;
  }
  else if (x>y) {
    return gcd(y, x-y);
  }
  else if (x
    return gcd(x, y-x);
  }
}

int main(){
  int a,b;
  cin>>a>>b;
  cout<
  return 0;
}