#include <iostream>
using namespace std;

int gcd(int a, int b);

int main() {
    int a, b;
    cin >> a >> b;

    cout << gcd(a, b) << endl;

    return 0;
}


int gcd(int a, int b) {
    if (b == 0)
        return a;
    return gcd(b, a % b);
}

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: