from sys import stdin def main(): input = lambda: stdin.readline()[:-1] A, B, C = map(int, input().split()) ans = (A / B) * C print(ans) main()