Type the program's output
public class ComputationEngine \{
public static int compute(int vall, int val2) \{
int result;
int \( i \);
result \( =1 \);
for ( \( i=0 ; i<\operatorname{vall} ;++i)\{ \)
result \( *= \) val -3 ;
\}
return result;
\}
public static void main(String[] args) \{
int value1;
int value2;
int computedValue;
value1 \( =4 \);
value \( 2=3 \);
computedvalue = compute \( ( \) value 1 , value2 \( ) \);
System.out.println(computedValue);
\}
\}