#include using namespace std; int main(){ double N,M,K; cin>>N>>M>>K; double answer=M*(N-1)/(N*(N-K-1)); printf("%.10f\n", answer); }