Problem
Write a top-down design and an Ada program that inputs an integer and a onecharacter string. The output should be a diamond composed of the character and extending the width specified by the integer. For example, if the integer is 11 and the character is an asterisk (*), the diamond would look like this:
If the integer entered is an even number, round it to the next highest odd number. Use meaningful variable names, proper indentation, appropriate loop comments, and good prompting messages.