#include int find(int *a,int l,int r,int value) { if(l<=r) { int mid=(l+r)/2; if(a[mid]== value) return mid; find(a,l,