public class Main {
public static void main(String[] args) {
int a = 10, b = 3;
int sum = a + b; // arithmetic -> 13
boolean bigger = a > b; // comparison -> true
boolean both = bigger && (sum > 5); // logical -> true
sum += 100; // assignment -> sum is now 113
System.out.println(sum); // 113
System.out.println(both); // true
}
}