this solution's answer is 535
package com.codegym.task.task03.task0306;
/*
Parenthetical brainteaser
*/
public class Solution {
public static void main(String[] args) {
System.out.println(1 + (2 * 3 + 4) * 5 + 6 * (7 + 8 * 9) + 10);
}
}