Problem2185--Array input

2185: Array input

Time Limit: 1 Sec  Memory Limit: 128 MB
Submit: 424  Solved: 238
[Submit] [Status] [Web Board] [Creator:]

Description

Write a C++ code fragment. You are to assume the user has been prompted for (exactly) 10 values of type int to be read from the keyboard, You are to use this input to fill an array. Then output the ninth number.

Input

Given 10 values of type int

Output

the ninth number

Sample Input Copy

1 2 3 4 5 6 7 8 9 10

Sample Output Copy

9

Source/Category

13