SDE Path

Simple Interest

Easy

Simple Interest

Compute simple interest from principal, rate, and time.

Input format

A single line with three non-negative integers P (principal), R (rate percent), and T (time).

Output format

Print the simple interest using integer arithmetic: P * R * T / 100 (the division drops any fraction).

Constraints

  • Values fit in a 64-bit signed integer
  • Trailing whitespace and a trailing newline are ignored by the judge

Read from stdin, write to stdout. Sample cases below show the exact format.

Sample cases

Example 1
Input
1000 5 2
Expected output
100
Example 2
Input
500 10 3
Expected output
150