fork download
  1. def nwd (a, b):
  2. while b!=0:
  3. pom = b
  4. b=a%b
  5. a=pom
  6. return a
  7.  
  8. print(nwd(25,35))
  9. print(nwd(12,39))
  10.  
Success #stdin #stdout 0.02s 9016KB
stdin
Standard input is empty
stdout
5
3