CF34C.Page Numbers

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

«Bersoft» company is working on a new version of its most popular text editor — Bord 2010. Bord, like many other text editors, should be able to print out multipage documents. A user keys a sequence of the document page numbers that he wants to print out (separates them with a comma, without spaces).

Your task is to write a part of the program, responsible for «standardization» of this sequence. Your program gets the sequence, keyed by the user, as input. The program should output this sequence in format l1l_{1} - r1r_{1} , l2l_{2} - r2r_{2} ,..., lkl_{k} - rkr_{k} , where ri+1<li+1r_{i}+1<l_{i+1} for all ii from 11 to k1k-1 , and li<=ril_{i}<=r_{i} . The new sequence should contain all the page numbers, keyed by the user, and nothing else. If some page number appears in the input sequence several times, its appearances, starting from the second one, should be ignored. If for some element ii from the new sequence li=ril_{i}=r_{i} , this element should be output as lil_{i} , and not as « lilil_{i}-l_{i} ».

For example, sequence 1,2,3,1,1,2,6,6,2 should be output as 1-3,6.

输入格式

The only line contains the sequence, keyed by the user. The sequence contains at least one and at most 100 positive integer numbers. It's guaranteed, that this sequence consists of positive integer numbers, not exceeding 1000, separated with a comma, doesn't contain any other characters, apart from digits and commas, can't end with a comma, and the numbers don't contain leading zeroes. Also it doesn't start with a comma or contain more than one comma in a row.

输出格式

Output the sequence in the required format.

输入输出样例

  • 输入#1

    1,2,3,1,1,2,6,6,2
    

    输出#1

    1-3,6
    
  • 输入#2

    3,2,1
    

    输出#2

    1-3
    
  • 输入#3

    30,20,10
    

    输出#3

    10,20,30
    
首页