


Input:
'a' = [1, 2, 4, 5], 'n' = 5
Output :
3
Explanation: 3 is the missing value in the range 1 to 5.
First-line contains an integer ‘n’.
The second line has ‘n’-1 integers denoting the array ‘a’.
You must return the only missing integer from 1 to ‘n’\
.
You don’t need to print anything. Just implement the given function.