# 410802075 BMI ```python= weight = 70 height = 170 bmi = weight/ (height/100)**2 print(f'A total number of 70 / 1.7**2 is {bmi} ') print('bmi', bmi, 'round(sc,2)', round(bmi, 2))