summaryrefslogtreecommitdiff
path: root/progs/a86.py
blob: 7dedf3c7585f41a2347a0b13f85bfb42aeacee2d (plain)
1
2
3
4
5
6
7
8
9
def recur_gcd(a, b):
	low = min(a, b)
	high = max(a, b)
	if low == 0:
		return high
	elif low == 1:
		return 1
	else:
		return recur_gcd(low, high%low)