执行以下程序,输出的结果是?
int a = 10, b = 20; int temp = a; a = b; b = temp; cout << a << " " << b;
10 20
20 10
10 10
20 20