Answer: Here's a simple program in Python that reads in three numbers from the user and displays them as shown:
num = input("Enter three numbers between 0 and 9: ")
print("The first number is:", num[0])
print("The second number is:", num[1])
print("The third number is:", num[2])
This program first prompts the user to enter three numbers between 0 and 9, which are read in as a single string. It then uses indexing to extract each individual digit from the string and print them out with the appropriate labels. Note that since the input is not validated, this program assumes that the user enters exactly three characters, each of which is a valid digit between 0 and 9.
Step-by-step explanation: