like when we define pair in C++
we have to name it so that we can access its first and second element.
example:
pair <int, int> p1;
here p1 is the name of the pair
but if we want to make given numbers of pairs simultaneously how can we name them and access their first and second element.
Pardon me if we can’t use pairs in this Problem.