/**
 * CS1101 Trial Lab: Volume.java
 *
 * This program computes the volume of a cube,
 * given its length, width and height.
 *
 * Discussion group: <fill in your group number here>
 **/

import java.util.*;

class Volume {

    public static void main(String[] args) {

        Scanner scanner = new Scanner(System.in);

        System.out.print("Enter length: ");
        int length = scanner.nextInt();

        System.out.print("Enter width : ");
        int width = scanner.nextInt();

        System.out.print("Enter height: ");
        int height = scanner.nextInt();

        // correct the following two statements 

        int volume = length + width
        System.out.println("Answer is " + volume)

    }

}


