Easy Beginners Problems > Implementation
Welcome to Dev's “Dure Jabar Golpo” (narrated: Story of moving too Far).<br> Our hero **Mr. Dev** is a skilled one. And pretty girls are begging for a chance to be a heroine. Mr. Dev is very beauty conscious. That’s why he decided to give chances to those girls who have a strictly higher beauty value with respect to the beauty value of **Ms. Jorina**. The girls stand in a line and giving the audition. When a girl appears, Mr. Dev checks her beauty value and makes either of the two possible comments on her beauty value. The first one is “**Kache Eso**” and the other is “**Dure Giya Mor**”.<br> You are appointed as an assistant to Mr. Dev. You are listing the **ID** of girls and the comment they gained. Now Mr. Dev wants you to give the summary of the audition. Input: ------ Input starts with an integer number **T** which denotes the test cases.<br> The next T lines contain two integers **N** and **J** which denotes the number of girls who have come to give audition and the beauty value of **Ms. Jorina**. <br> The next line contains **N** integers which denote the beauty value of girls. Constraints: ----- 1<=**T**<=100<br> 1<=**N**<=100<br> 1<=**J**<=100000<br> 1<=**Beauty Value**<=100000 Output: ------- For each test case, you need to print four lines. In the first line, you have to print “**Kache Eso**”. In the second line, you have to print the **IDs** of girls who have gained the comment “**Kache Eso**” separated by a single space.<br> In the third line, you have to print “**Dure Giya Mor**”. And in the fourth line, you have to print the **IDs** of the girl who has gained the comment “**Dure Giya Mor**” separated by a single space. <br> If either of the two categories got **0** (zero) girls then you just need to print an empty line in place of IDs. <br> The format of printing should be the same as given on the Sample Input / Output. Please have a look at the samples. Sample Input ------------ 1 5 7 2 3 5 7 9 Sample Output ------------- Kache Eso 5 Dure Giya Mor 1 2 3 4