// Online C++ compiler to run C++ program online
Your are given 2 positive integer x,y
4 ops
divide(x/11) if xi muple of 11
divide(x/5) if x is multiple of 5
x-- , x++
return min no of ops required to make x=y
x=26
y=1
26-> 25->5->5->1
op-3
x->54, y->2
54->55->5->1->2
op->4
//x->25, y->30
//op->5