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