im not getting 382 ...can any one explain what to do...and i have tried (1 + 2 * (3 + 4 * (5 + 6 * 7)) + (8 * (9 + 10))); too and its getting error in "The sequence of digits and arithmetic operations can not be changed."
package com.codegym.task.task03.task0306;
/*
Parenthetical brainteaser
*/
public class Solution {
public static void main(String[] args) {
System.out.println((2 * (3 + 4 )* 5 + 6 * 7));
}
}