Given an integer, return a new integer according to the rules below:
"invalid".look_and_say(3132) ➞ 111222
# By reading the number digit by digit, you get three "1" and three "2".
# Therefore, you put three ones and three two's together.
# Remember to return an integer.
look_and_say(95) ➞ 555555555
look_and_say(1213141516171819) ➞ 23456789
look_and_say(120520) ➞ 200
look_and_say(231) ➞ "invalid"