Task-A: Write a shell script to complete the following steps:
- Prompt the user to input his/her lucky number.
- If the input number is equal to 10, then print the message “You got the first prize.”
- If the input number is equal to 8, then print the message – “You got the second prize.”
- If the input number is equal to 999, then print the message – “You got the third prize.”
- If None of the above conditions are true, then print the message – “Sorry, good Luck for the next time.”

Task-B: Write a shell script to validate your input.
- Prompt the user to provide the username which should consists of characters and numbers both, and check if the following requirements are satisfied:
- Only lower-case letter [a-z] and numeric character [0-9] are allowed.
- The length must be between 4 to 8 digits
Test your script with the following inputs, and submit the screenshot for the script and all the Four outputs:
- Your input with one upper case
- The input has length less than 4 digits.
- The input has length larger than 8 digits.
- Your input in lower case and should have length between 4 to 8.