#abc125a. [abc125_a]Biscuit Generator

[abc125_a]Biscuit Generator

Problem Statement

A biscuit making machine produces BB biscuits at the following moments: AA seconds, 2A2A seconds, 3A3A seconds and each subsequent multiple of AA seconds after activation.

Find the total number of biscuits produced within T+0.5T + 0.5 seconds after activation.

Constraints

  • All values in input are integers.
  • 1leqA,B,Tleq201 \\leq A, B, T \\leq 20

Input

Input is given from Standard Input in the following format:

AA BB TT

Output

Print the total number of biscuits produced within T+0.5T + 0.5 seconds after activation.


Sample Input 1

3 5 7

Sample Output 1

10
  • Five biscuits will be produced three seconds after activation.
  • Another five biscuits will be produced six seconds after activation.
  • Thus, a total of ten biscuits will be produced within 7.57.5 seconds after activation.

Sample Input 2

3 2 9

Sample Output 2

6

Sample Input 3

20 20 19

Sample Output 3

0