11133 . 单选题 Puls

执行下面代码后,输出为?

int main() {
    int a = 5;
    int* p = &a;
    int** q = &p;
    **q += 7;
    cout << a << " < " << *p;
}