Problem2124--Insert number

2124: Insert number

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

Description

There is an array of 5 elements in positive order. Insert a number according to the original order and print the new array.

Input

An array of 5 elements in positive order

Output

The new array

Sample Input Copy

1,2,3,5,6
4

Sample Output Copy

1,2,3,4,5,6

Source/Category

166