fork download
  1. (define (fun a b c)
  2. ((if (> a b)
  3. (if (> b c) (+ (* a a) (* b b)) (+ (* a a) (* c c)))
  4. (if (> a c) (+ (* a a) (* b b)) (+ (* b b) (* c c)))
  5. )
  6. )
  7. )
  8. (fun 2 4 1)
  9.  
Runtime error #stdin #stdout 0.03s 4176KB
stdin
Standard input is empty
stdout
Standard output is empty