HTMLify

bmi.py
Views: 180 | Author: abh
def bmi(weight: "kg", height: "m"):
    return weight / height ** 2

Comments