执行下面程序后输出为( )。
int x = 3; void f(int &x){ x += 2; } int main(){ int x = 10; f(x); cout << x << " " << ::x; }
12 3
10 5
12 5
10 3