Joseph and Jane are making a contest for apes. During the process, they have to communicate frequently with each other. Since they are not completely human, they cannot speak properly. They have to transfer messages using postcards of small sizes. To save space on the small postcards, they devise a string compression algorithm:
- If a character, ch, occurs n (>1) times in a row, then it will be represented by {ch}{n}, where {n} is the value of n. For example, if the substring is a sequence of 'a' ("aaaa"), it will be represented as "a4".
- If a character, ch, occurs exactly one time in a row, then it will be simply represented as {ch}. For example, if the substring is "a", then it will be represented as "a".
Help Joseph to compress a message, msg.
The only line of input contains a string, msg.
Print the string msg as a compressed message.
- 1 <= length(msg) <= 10^5
- msg consists of lowercase English characters () only.
abcaaabbb
abca3b3
abcd
abcd
aaabaaaaccaaaaba
a3ba4c2a4ba
-
Sample Case #00: msg = "". Here, the first characters occur exactly once, and the rest of them occur times in a sequence.
-
Sample Case #01: msg = "". As there is no multiple consecutive occurrence of any character, the compressed message will be same as original one.
-
Sample Case #02: msg = "". In the first 3 occurrences, 'a' is repeated times, while in the last occurrence, there is only one 'a'. Also,'c' occurs two times, and 'b' occurs one time in both occurrences.