Write a program that reads an integer n, then reads n more integers, then prints the sum of those n integers. You may assume that each integer is between 0 and 10000. For example, if the user types 2 1000 342, your program will display 1342. If the user types 11 3 1 4 1 5 9 2 6 5 3 5, your program will display 44. If the user types 0, your program will display 0.