1. byte x = 2; 2. x += 3; If this had been written using the longhand approach 1. byte x = 2; 2. x = (byte)(x + 3);