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

import java.util.*;

public class Cube {

  public static void main(String[] args) {

    Scanner stdIn = new Scanner(System.in);

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

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

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

    // correct the following two statements 

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

  }

}

