Contact: aviboots(AT)netvision.net.il
39,923 questions
51,856 answers
573 users
import math print(math.gcd(12, 8)) print(math.gcd(30, 0)) print(math.gcd(100, 525)) print(math.gcd(13, 9)) print(math.gcd(18, 4)) print(math.gcd(0, 0)) ''' run: 4 30 25 1 2 0 '''