package lectures.types.math;
import util.annotations.WebDocuments;


@WebDocuments({"Lectures/TypesMath.pptx", "Lectures/TypesMath.pdf", "Videos/TypesMath.avi"})
public interface IntBMISpreadsheet {
    int getWeight();
    void setWeight(int newValue);   
    int getHeight();
    void setHeight(int newValue);   
    int getBMI();
}