#include <iostream>
#include <cmath>
using namespace std;

int main() {
	double R1,R2,R3; 
    cin>>R1>>R2>>R3;  
    cout<<round((R1*R2*R3)/(R1*R2+R1*R3+R2*R3)*1000)/1000;   
	return 0;
}