# 資訊課作業 ```python= 9/21作業 height=float(input("what's your height?(m):")) weight=float(input("what's your weight?(kg):")) BMI=weight/height**2 print(f'wow,your BMI is={BMI:.2f}') ```