float fun(float a,float b){ float data=0; if((!(a<0))&&(!(b<0))) { data = sqrt(a)+sqrt(b); return data; }}