public class MainApp { public static void main(String args[]) { System.out.println(36); // && and의 의미(양쪽의 수기이 모두 맞아야 함) / 논리곱 System.out.println(3>4 && 54 || 5>6); // || ~거나(백스페이스 옆에 있음, 3은 4보다 크거나 5는 6보다 크다(양쪽 두 수식 중 하나만 맞으면 됨) / 논리합 System.out.println(36); System.out.println(3