AT_abc414_b [ABC414B] String Too Long
Description
> Restore run-length encoding. If the result is too long, output `Too Long`.
You are given $ N $ pairs of characters and integers $ (c_1,l_1),(c_2,l_2),\ldots,(c_N,l_N) $ .
Let $ S $ be the string formed by concatenating $ l_1 $ characters $ c_1 $ , $ l_2 $ characters $ c_2 $ , $ \ldots $ , and $ l_N $ characters $ c_N $ in this order.
Output $ S $ . However, if the length of $ S $ exceeds $ 100 $ , output `Too Long` instead.
Input Format
The input is given from Standard Input in the following format:
> $ N $ $ c_1 $ $ l_1 $ $ c_2 $ $ l_2 $ $ \vdots $ $ c_N $ $ l_N $
Output Format
If the length of $ S $ is at most $ 100 $ , output $ S $ ; otherwise, output `Too Long`.
Explanation/Hint
### Sample Explanation 1
$ S $ is `mississippi`. Since the length of $ S $ is not greater than $ 100 $ , output $ S $ .
### Sample Explanation 2
The length of $ S $ is $ 7\times 10^{18} $ , so output `Too Long`.
### Constraints
- $ 1\leq N\leq 100 $
- $ 1\leq l_i\leq 10^{18} $
- $ N $ and $ l_i $ are integers.
- Each $ c_i $ is a lowercase English letter.
- $ c_i\neq c_{i+1} $