下面程序的输出结果是__________。
#include <iostream>
using namespace std;
#define SQR(A) A*A
int main() {
int x = 6, y = 3, z = 2;
x /= SQR(y + z) / SQR(y + z);
cout << x << endl;
} 




