Compute simple interest using principal, rate, and time.
Constraints
Example
>>> simple_interest(1000, 0.05, 2) 100.0 >>> simple_interest(500, 0.1, 1.5) 75.0 >>> simple_interest(0, 0.2, 10) 0.0
Recent Submissions
No submissions yet — hit Run Tests to try!
Hints