# https://[Log in to view URL]
def gcd(a, b):
    while b != 0:
        a, b = b, a % b

    return a

print(gcd(10, 5))

Embed on website

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