# Write A Program To Find The Sum Of All The Elements In A List
finalList = []
numOfElements = int(input("Enter The Number Of Elements In The List : "))
for i in range(numOfElements):
element = int(input("Enter The Element : "))
finalList.append(element)
print("The List Is : ", finalList)
print("The Sum Of Elements : ", sum(finalList))