double add(int a,double b){ return a+b;}double add(double a,int b){ return a+b;}int add(int a,int b){ return a+b;}