fork(1) 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.  
  10.  
Success #stdin #stdout 0.07s 14132KB
stdin
Standard input is empty
stdout
5