You are given two integers \(N\) and \(K\) denoting the number of elements in the array and an arbitrary integer respectively. You can perform the following operations:
Your task is to delete all the elements of the array using the minimum number of provided operations.
Input format
Output format
Print \(i^{th}\) \(T\) lines denoting the answer to the \(i^{th}\) test case.
Constraints
\( 1\leq T \leq 20000\)
\(1 \leq N,K \leq 1e9\)
There are 4 elements if we choose 2nd index we can remove 1st,2nd and 3rd in first operation. In second operation we can choose 4th index and remove it.