fork download
  1. def testes(x, y):
  2. while y:
  3. temp = x
  4. x = y
  5. y = temp % y
  6. return x
  7.  
  8. #https://pt.stackoverflow.com/q/456357/101
Success #stdin #stdout 0.02s 9176KB
stdin
Standard input is empty
stdout
Standard output is empty