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 ith T lines denoting the answer to the ith test case.
Constraints
1≤T≤20000
1≤N,K≤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.