#include using namespace std; typedef long long ll; int main() { int P, Q, R; cin >> P >> Q >> R; printf("%.10lf\n", max({P, Q, R, P + Q, P + R, Q + R}) / 1. / (P+Q+R)); }