Run »
×
Change Orientation
#Import math Library import math #find the highest number that can divide two numbers print (math.gcd(26, 12)) print (math.gcd(12, 6)) print (math.gcd(10, 0)) print (math.gcd(0, 34)) print (math.gcd(0, 0))
2
6
10
34
0
×
Report a Problem:
Your E-mail:
Page address:
Description:
Submit