/**
 * CS1101 Take-home Lab #1, Exercise 4: Hypothenuse.java
 *
 * <Fill in description of program here>
 *
 * Discussion group: <fill in your group number here>
 */

// add import statement(s) here if necessary

class Hypothenuse {

    public static void main(String[] args) {

        Random random = new Random();
        DecimalFormat df = new DecimalFormat("0.00");

        // to generate random integers in range [10,1000]
        int base   = <fill in your code>
        int height = <fill in your code>

        <fill in your code>

    }
}


