I have in the input file a column with the following format
H6
H7
O4
C4
H8
H9
O5
C5
H10
H11
I want the output to have the following format
"a H6"
"a H7"
"a O4"
"a C4"
"a H8"
"a H9"
"a O5"
"a C5"
"a H10"
"a H11"
I tried so far awk '{print "a "$1""}' filein > fileout
but the output was not the desired as I got a column with missing the " ".