Answer:
Following are the program in the Python Programming Language.
#declare variable and initialize to 0
sum = 0
#read the following file
file = open('numbers.txt', 'r')
#set the for loop
for n in file:
#convert the file string into the integer and perform sum.
sum += int(n)
Explanation:
The following are the description of the program.