3538.Borze

Time Limit: 1s Memory Limit: 256MB

Ternary numeric notation is quite popular in Berland. To telegraph the ternary number the Borze alphabet is used. Digit 0 is transmitted as «.», 1 as «-.» and 2 as «--». You are to decode the Borze code, i.e. to find out the ternary number given its representation in Borze alphabet.

Input Format(From the terminal/stdin)

The first line contains a number in Borze code. The length of the string is between 1 and 200 characters. It's guaranteed that the given string is a valid Borze code of some ternary number (this number can have leading zeroes).

Output Format(To the terminal/stdout)

Output the decoded ternary number. It can have leading zeroes.

Sample Input 1

Copy
.-.--
     \n

Sample Output 1

Copy
012
   \n

Sample Input 2

Copy
--.
   \n

Sample Output 2

Copy
20
  \n

Sample Input 3

Copy
-..-.--
       \n

Sample Output 3

Copy
1012
    \n

Submit

请先 登录

© 2025 FAQs