#!/usr/bin/env ruby max = -Float::INFINITY while line = STDIN.gets v = line.to_f max = v if v > max end puts max