Select specific rows and columns

awk '
    FNR == 7 { print $2; next; }
    FNR == 8 { print $3; next; }
    FNR == 11 { print $1, $3; exit; }
' input-file