fork download
  1. #!/bin/bash
  2. read a
  3. read b
  4. read c
  5. if [ $a -ge $b ]; then
  6. if [ $a -ge $c ]; then
  7. echo $a
  8. else
  9. echo $c;
  10. fi
  11. else
  12. if [ $b -ge $c ]; then
  13. echo $b
  14. else
  15. echo $c
  16. fi
  17. fi
Success #stdin #stdout 0s 5028KB
stdin
69
666
420
stdout
666