Problem1320--训练STL中的list的插入操作

1320: 训练STL中的list的插入操作

[Creator : ]
Time Limit : 1.000 sec  Memory Limit : 128 MiB

Description

一共有n个整数,读入这n个数,然后在第二个位置插入2个0,输出结果。10<n<100,每个整数的取值范围大于0小于1000。主要是学习insert的用法。

Input

每行一个整数,最后一个数据-1表示结束。-1不参加计算。

Output

一行,一个整数,表示结果。

Sample Input Copy

1
2
3
4
5
6
7
8
9
9
9
-1

Sample Output Copy

1200345678999

Source/Category