Adding all input numbers
# try block to handle the exception
try:
    my_list = []
    while True:
        my_list.append(int(input()))
# if the input is not-integer, just print the list
except:
    print('Please Enter A Number')
print(sum(my_list))