Write a program that prints a box pattern: five asterisks on the first line, then asterisk-space-space-space-asterisk on the middle two lines, then five asterisks on the last line.
The first and last lines have five asterisks. The middle lines have an asterisk, three spaces, then another asterisk. Count carefully to match the pattern exactly. Run your program and check the output.
If the box looks wrong, count spaces and asterisks in each string. This problem shows how spacing matters in text output. Even one wrong space breaks the pattern.