题库练习 Split a Number
← 上一题 下一题 →

A12758 | Split a Number

时间限制1s
内存限制256MB
通过 / 提交0/0

题目描述

Dima worked all day and wrote down on a long paper strip his favorite number $n$ consisting of $l$ digits. Unfortunately, the strip turned out to be so long that it didn't fit in the Dima's bookshelf.

To solve the issue, Dima decided to split the strip into two non-empty parts so that each of them contains a positive integer without leading zeros. After that he will compute the sum of the two integers and write it down on a new strip.

Dima wants the resulting integer to be as small as possible, because it increases the chances that the sum will fit it in the bookshelf. Help Dima decide what is the minimum sum he can obtain.

输入格式

The first line contains a single integer $l$ ( $2 \le l \le 100\,000$ ) — the length of the Dima's favorite number.

The second line contains the positive integer $n$ initially written on the strip: the Dima's favorite number.

The integer $n$ consists of exactly $l$ digits and it does not contain leading zeros. Dima guarantees, that there is at least one valid way to split the strip.

输出格式

Print a single integer — the smallest number Dima can obtain.

输入输出样例

输入 #1
7
1234567
输出 #1
1801
输入 #2
3
101
输出 #2
11
C++ 编辑器
输入
输出