• + 0 comments
    num,den= map(int, input().split())
    k=int(input())
    p=num/den
    geodis=((1-p)**(k-1))*p
    print(round(geodis,3))