A - Biscuit Generator 解説 /

実行時間制限: 2 sec / メモリ制限: 1024 MB

配点 : 100

問題文

ビスケット生産装置を起動すると、起動してから A 秒後、2A 秒後、3A 秒後、... (A の倍数秒後) に B 枚ずつビスケットを生産します。

ビスケット生産装置を起動してから T + 0.5 秒後までに生産されるビスケットの合計枚数を求めてください。

制約

  • 入力は全て整数である。
  • 1 \leq A, B, T \leq 20

入力

入力は以下の形式で標準入力から与えられる。

A B T

出力

ビスケット生産装置を起動してから T + 0.5 秒後までに生産されるビスケットの合計枚数を出力せよ。


入力例 1

3 5 7

出力例 1

10
  • ビスケット生産装置を起動してから 3 秒後に 5 枚のビスケットが生産されます。
  • ビスケット生産装置を起動してから 6 秒後に 5 枚のビスケットが生産されます。
  • したがって、ビスケット生産装置を起動してから 7.5 秒後までに合計 10 枚のビスケットが生産されます。

入力例 2

3 2 9

出力例 2

6

入力例 3

20 20 19

出力例 3

0

Score : 100 points

Problem Statement

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

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

Constraints

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

Input

Input is given from Standard Input in the following format:

A B T

Output

Print the total number of biscuits produced within T + 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.5 seconds after activation.

Sample Input 2

3 2 9

Sample Output 2

6

Sample Input 3

20 20 19

Sample Output 3

0