# include using namespace std; int main() { int a = 1; int b = 2; int c = a; a = b; b = c; cout << "A: " << a; cout << "B: " << b; return 0; }