-- Homework 15, challenge: BMI. -- -- Prompt for height in metres and weight in kg. Compute: -- bmi = weight / (height * height) -- Print the result with one decimal place using %.1f. -- -- Run with: lua exercises/15/homework/04-bmi.lua -- Your code goes here: