First save the following text into a file called marks.csv
Smith,6,9,24
Jones,9,12,20
Fred,5,9,20
Each line contains a students name and three marks they scored. Find the top student by simply summing the three marks and then output their name. In this case the output is:
Jones
I would like to see somebody beat my Python solution but any language will be allowed :) If anybody beats my Python solution I will accept their answer but for now I will just accept the shortest code.