You are given a number n and a pattern. the pattern consists of lowercase latin letters and one operation "+" or "-". the challenge is to split the number and evaluate it according to this pattern e.g. 1232 ab+cd -> a:1, b:2, c:3, d:2 -> 12+32 -> 44