Using the LC3 simulator, write a program where the user must enter a password that satisfies the following criteria: o at most 12 characters and at least 8 characters o may contain only capital A through Z, "*" or " " (space) characters - The process must continue until the user enters a valid password.The program works as follows: o Ask to enter a password of up to 12 characters. o If password has any characters that are not allowed, warn the user that at least one character is not allowed, and ask for another password o Once the user enters a password that only contains allowed characters, print "Password created" and halt the program.