help with sed or awk

I need to add a field at the beginning of each record in the file. The file is comma seperated. Can somebody throw some light.
My record looks something like this

I need to add 100 at the beginning of each record.
o/p should be

sed 's/^/100,/' infile > outfile

Thanks radoulov. I figured it out