#include #include using namespace std; int main(){ int a,b,c;cin>>a>>b>>c; int mx = max(a,max(b,c)); cout << fixed << setprecision(10) << (double)max(mx,a+b+c-mx)/(a+b+c) << endl; }