fork(1) download
  1. # your code goes here
  2.  
  3. def GCD(x, y):
  4. if y is 0 :
  5. return x
  6. GCD(y, x % y)
  7.  
  8. print(GCD(980, 1000))
Success #stdin #stdout 0.02s 27704KB
stdin
Standard input is empty
stdout
None