A Python 3 Math challenge using unit tests. Your job is to write a function in BMICalculator.py (call it calculateBMI() that calculates a user's BMI (according to http://flightphysical.com/medical-exam/weight)
- calculateBMI() receives two inputs (both integers):
- receives total inches as an integer
- receives weight as an integer
- calculateBMI() returns 1 output (an integer):
- this is the BMI value
- 62 120 => 22
- 60 123 => 24
- 76 197 => 24
- 64 157 => 27
- 59 143 => 29
- 61 222 => 42
- 58 91 => 19
- 70 146 => 21
- 70 271 => 39
- 58 258 => 54