System.out.println("three = one + two ==>" + three); three =+ one; System.out.println("three =+ one ==>" + three); three -= one; System.out.println("three -= one ==>" + three); three *= one; System.out.println("three *= one ==>" + three); three /= one; System.out.println("three /= one ==>" + three); three %= one; System.out.println("three %= one ==>" + three);