class Sample { int a = 1, b = 2; void hither() { a = b; } void yon() { b = a; } }