1063: C++插入素数
          Memory Limit:128 MB
          Time Limit:1.000 S
         
      
      
        
          Judge Style:Text Compare
          Creator:
      
      
          Submit:29
          Solved:22
      
Description
已有一个已排好的9个元素的数组,今输入一个数要求按原来排序的规律将它插入数组中。
    Input
第一行,原始数列。
第二行,需要插入的数字。
      Output
排序后的数列
        Sample Input Copy
1 7 8 17 23 24 59 62 101
50Sample Output Copy
1
7
8
17
23
24
50
59
62
101