Needed shell script to append desired text to each line in a file

Hi,
I had generated a report in my tool as follows

output.txt
 43.35
 9

i needed the script to generate a new file like below
i want to append the text to each of these lines of my file

newoutputfile.txt should be
 Total Amount : 43.35
Record Count:9

Regards,
Vasa Saikumar.

---------- Post updated at 02:15 AM ---------- Previous update was at 01:55 AM ----------

hi all,
small corection in the question....

i got the file in the below format....

43.45,9

all my files wil be in the same format only like amount,count

And my new output file should be

needed outputfile.txt
 totalamount :43.45
 Count:9
awk -F, '{print "totalamount :"$1, "Count:" $2}' OFS='\n' file

Or

awk -F, '{print "totalamount :" $1; print "Count:" $2}' file