public static void main(String[] args) {

        long c = getVolume(30,15,10) * 1000;

        System.out.println("Litres in Pool: " + c);
    }

    public static long getVolume(int a, int b, int c) {
        // litres of water to fill the pool
        // length in metres     //  1 meter cubic = 1000 liters

        int length = 30;
        int width = 20;
        int depth = 10;

        int cube = (length * width * depth) * 1000;

        return cube;
    }
}