1 2 3 4 5 6 7 8 9
#!/usr/bin/env ruby sum = 0.0 while line = STDIN.gets sum += line.to_f end puts sum