1. 연산자 우선순위

public static void main(String[] args) {
        int sum3 = 2 * 2 + 3 * 3; 
        int sum4 = (2 * 2) + (3 * 3);
}