1 2 3 4 5 6 7 8 9 10
#!/usr/bin/env ruby max = -1.0/0 while line = STDIN.gets v = line.to_f max = v if v > max end puts max