fork download
  1. a=4
  2. b=83
  3. def nwd(a,b):
  4. while a!=b:
  5. if a>b:
  6. a=a-b
  7. elif a<b:
  8. b=b-a
  9. return a
  10. print(nwd(a,b))
  11. print(a , ' ',a/(nwd(a,b)))
  12. print('--','=','--')
  13. print(b , ' ',b/(nwd(a,b)))
  14.  
Success #stdin #stdout 0.03s 9636KB
stdin
Standard input is empty
stdout
1
4    4.0
-- = --
83    83.0