Skip to content
C

First Line of a Javadoc Block

Mediumjava

Given the lines of a /** ... */ documentation comment, print the first real content line: the first non-empty line of prose after /**, with any leading * and surrounding spaces removed. Ignore lines that are only /**, only */, or start with @.

Input: the first line is an integer N; then N lines forming the Javadoc block.

Output: one line — the first content line's text.

Input (stdin)

Output

Run your code to see output here...