• + 0 comments
    a,b=map(int,input().split())
    p=a/b
    q=1-p
    n=int(input())
    r=(q**(n-1))*p
    print(round(r,3))