林夕佳  •  1年前


include<bits/stdc++.h>

using namespace std; int main(){

int a,b,r;
cin>>a>>b;
r=1/(1.0/a+1.0/b);
cout<<r;
return 0;

}


评论: