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.")
Explanation:
This gets input for valCount
valCount = int(input())
This creates an empty list
reports = []
This gets valCount integer from the user
<em>for i in range(valCount):</em>
<em> num = int(input())</em>
<em>Each input is appended to the report list</em>
<em> reports.append(num)</em>
This iterates through the report list
for i in reports:
This prints each element of the report list followed by "reports."
print(i,"reports.")