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. def rzad(goscie, gospodarze):
  8. return nwd(goscie, gospodarze)
  9. print(nwd(72,90))
  10.  
  11.  
Success #stdin #stdout 0.07s 14136KB
stdin
Standard input is empty
stdout
18