Rt link
#include <bits/stdc++.h>
using namespace std;
#define MAXN 1019
#define INF 100000009
#define eps 1e-6
int main()
{
int a,b;
cin>>a>>b;
if(a!=1&&b==1)
{
cout<<"0.000000000";
return 0;
}
long double w=b/(a*1.0);
double d=w/(b*1.0);
printf("%.16lf",d);
return 0;
}