시간 제한메모리 제한제출정답맞힌 사람정답 비율
1 초 512 MB1811159162.759%

문제

You are teaching kindergarten! You wrote down the numbers from $1$ to $n$, in order, on a whiteboard. When you weren’t paying attention, one of your students erased one of the numbers.

Can you tell which number your mischievous student erased?

입력

The first line of input contains a single integer $n$ ($2 \le n \le 100$), which is the number of numbers that you wrote down.

The second line of input contains a string of digits, which represents the numbers you wrote down (minus the one that has been erased). There are no spaces in this string. It is guaranteed to contain all of the numbers from $1$ to $n$, in order, except for the single number that the student erased.

출력

Output a single integer, which is the number that the tricky student erased.

예제 입력 1

5
1235

예제 출력 1

4

예제 입력 2

10
1234568910

예제 출력 2

7

예제 입력 3

15
1234567891012131415

예제 출력 3

11