fork download
  1. def mdc(a, b):
  2. return a if not b else mdc(b, a % b)
  3.  
  4. print(mdc(70, 25))
Success #stdin #stdout 0.04s 9244KB
stdin
Standard input is empty
stdout
5