Create a Windows application that includes three labels, A, B, and C; a text box; a button; and a numeric-up-down. Let A, B, and C each represent a hidden number between 1 and 25, chosen randomly. The user tries to guess the three numbers by entering a number from 1 to 25 in the text box and clicking the button to submit the guess. If the number matches one of the hidden numbers, the label representing it changes to show the number. The numeric-up-down counts the number of guesses that the user makes until all three numbers have been guessed. You may wish to use the Tag property of a label to store the hidden number.