int x = 100; //100 (RHS) gets assigned to x (LHS) int y = x; //The value of x i.e. 100 (RHS) gets assigned to y (LHS) ...