11132 . 单选题 Puls

执行下面程序后,输出为?

int f(int x = 2) {
    return x * 3;
}

int main() {
    cout << f() << " < " << f(4);
}