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