Given a string, perform run-length encoding (e.g. "aaabb" → "a3b2").
One line string s.
Encoded string.
Example 1:
Input:
s = "aaabb"
Output:
a3b2
Explanation:
Three 'a's then two 'b's.