Which sequence formats a full name by removing extra whitespace and normalizing each name segment?
Delete every space and capitalize only the first character of the entire result.
Join the raw input first, then split the resulting single segment.
Trim the input, split it into fields, normalize each segment's case, then join with spaces.
Print the raw input and return an empty string.