1BEGIN {
2       RS=""; FS="\n";
3       ORS=""; OFS="\n";
4      }
5{
6        split ($2,f," ")
7        print $0;
8}
9