Implementation of Algorithm 4.5
Largest consecutive subsequence sum
Author: Ryan McIntyre

Input is a sequence of real numbers, given in the command line
as a comma-separated list or a file containing one.
	python css.py input.txt
	python css.py 1,3,-4.02,3.14159,.86

Output is the largest consecutive subsequence sum, and the
corresponding subsequence.
