1 2 3 4 5 6 7 8 9
#!/usr/bin/env ruby min = Float::INFINITY while line = STDIN.gets v = line.to_f min = v if v<min end puts min