For example :
let us consider 7 , 8 as inputs
step 1 :
7 * 2 - 8 = 6, which is not zero, so it goes to next step and first number is 6
6 * 2 - 8 = 4, which is not zero, so it goes to next step and first number is 4
4 * 2 - 8 = 0, here it satisfies the condition so system will print 7 , 8
Another sample set that satisfies the above condition: 10, 20
10 * 2 - 20 = 0, here it satisfies the condition so system will print 10 , 20