#include <iostream> using namespace std; int main() { float a,b,c; scanf("%f%f%f",&a,&b,&c); c=1/a+1/b; printf("%f",1/c); return 0; }