Please help, have tried nearly 60 times. The requirements are unclear and ambiguous. I do not understand. Two opening and closing parenthesis in the TOTAL expression? so, only (( and )). Not including the print statement. I think I've tried everything.
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));
}
}