int x = 10;
int y = 20;
x = y;
y = x;
 
// X is 20, y is 20

This’ll be on the exam somewhere.