Given the bill amount and desired tip percentage, compute the total to pay including the tip.
Constraints
Example
```python >>> calculate_total(50, 15) 57.5 >>> calculate_total(10, 20) 12.0 >>> calculate_total(0, 10) 0.0 ```
Recent Submissions
No submissions yet — hit Run Tests to try!
Hints