Concatenating every other line with the next
Unless you're really insistent that it need be sed, just pipe it through
paste -d" " - -
This is easiest using paste
:
paste -s -d' \n' input.txt
Although there's a Famous Sed One-Liner (38) to emulate this as in potong's answer.