why doesnt this pass the test?
even tried
return (a*b*c);
package com.codegym.task.task01.task0134;
/*
Fill a pool with water
*/
public class Solution {
public static void main(String[] args) {
System.out.println(getVolume(25, 5, 2));
}
public static long getVolume(int a, int b, int c) {
//write your code here
long answer = a*b*c;
return answer;
}
}