fork download
  1. #include <bits/stdc++.h>
  2. using namespace std;
  3. #define int long long
  4. #define fi first
  5. #define se second
  6.  
  7. int n, a, b, totala, totalb;
  8. signed main(){
  9. cin >> a >> b;
  10. cout << __gcd(a, b);
  11. }
  12.  
  13.  
Success #stdin #stdout 0.01s 5268KB
stdin
4 6
stdout
2