Problem description not clear

In this problem - CodeChef: Practical coding for everyone.
For deletion operation do we need to print 2 positions -

  1. node which is deleted
  2. node which is replacing deleted node . (when node to be deleted has at least one child).

Accepted answer expects two positions if node has at least one child. But its not clear in description.

Even If we need to print two positions there will be different answers, because I can replace node with maximum in left sub tree or minimum in right sub tree.
But only one answer gets accepted.
This is causing lot of confusion.

ex.
Custom Input
6
i 1
i 3
i 0
i 2
i 4
d 3

output1
1
3
2
6
7
3
7

Output 2
1
3
2
6
7
3
6

Output1 - Replacing with Minimum in right sub tree of node.
Output2 - Replacing with Maximum in right sub tree of node.