fork(1) download
  1. # algorytm euklidesa
  2. def nwd(a,b):
  3. while a!=b:
  4. if a>b:
  5. a=a-b
  6. elif a<b:
  7. b=b-a
  8. return a
  9. print(nwd(17,24))
  10. a=int(input('Podaj licznikj:'))
  11. b=int(input('Podaj mianownik:'))
  12. l=a
  13. m=b
  14.  
Success #stdin #stdout 0.04s 9640KB
stdin
Standard input is empty
stdout
17