Answer:
The program in Python is as follows:
valCount = int(input())
reports = []
for i in range(valCount):
num = int(input())
reports.append(num)
for i in reports:
print(i,"reports.")
Step-by-step explanation:
This gets input for valCount
valCount = int(input())
This creates an empty list
reports = []
This gets valCount integer from the user
for i in range(valCount):
num = int(input())
Each input is appended to the report list
reports.append(num)
This iterates through the report list
for i in reports:
This prints each element of the report list followed by "reports."
print(i,"reports.")