Solved Problem - Pair Sum

Problem statement

Given a sorted array of NN integers A[]A[]. Find if there exist a pair of integers A[i]A[i] and A[j]A[j] such that the sum is equal to the given integer XX.

Input format

The first line of input consists of two space-separated integers N(1N105)N(1 \leq N \leq 10^{5}) and X(1X106)X(1 \leq X \leq 10^{6}) ...