fork download
  1. <?php
  2. function gcd($a, $b) {
  3. if ($b == 0) return $a;
  4. return gcd($b, $a % $b);
  5. }
  6.  
  7. echo(gcd(12,20));
Success #stdin #stdout 0.02s 26056KB
stdin
Standard input is empty
stdout
4