package
0.0.0-20241221191246-b80a13d7bbe0
Repository: https://github.com/yvv4git/go-algorithms.git
Documentation: pkg.go.dev

# README

Missing Number

Task

You are given all numbers between 1,2,\ldots,n except one. Your task is to find the missing number.

Input

  • The first input line contains an integer n.
  • The second line contains n-1 numbers. Each number is distinct and between 1 and n (inclusive).

Output

Print the missing number.

Constraints

  • 2 <= n <= 2 * 10^5

Example

Input:
5
2 3 1 5
Output:
4