public final class BytecodeDemo {
    static int adjust(int x, int y) {
        int sum = x + y;
        return sum * 2;
    }
}
