Read one line of text from stdin (up to 16 characters, letters/digits/punctuation).
Print the hex dump of its characters (excluding the trailing newline):
- each byte as two-digit lowercase hex, separated by single spaces
- then two spaces and the ASCII column wrapped in pipes
Input "DB" -> Output "44 42 |DB|"