#include #include #include using boost::multiprecision::cpp_int; using namespace std; using namespace atcoder; #if __has_include("print.hpp") #include "print.hpp" #endif #define rep(i, n) for(ll i = 0; i < (ll)(n); i++) #define ALL(x) (x).begin(), (x).end() #define RALL(x) (x).rbegin(), (x).rend() #define MOD 1000000007 template inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; } template inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; } typedef long long ll; typedef pair p; int main(){ ios::sync_with_stdio(false); cin.tie(0); vector v(3); cin >> v[0] >> v[1] >> v[2]; sort(ALL(v)); long double res = (v[1]+v[2])/(v[0]+v[1]+v[2]); cout << setprecision(15); cout << res << endl; }