#include <iostream>

int f() { return 0; }

int main()
{
    using namespace std;
    
    cout << boolalpha;
    
    cout << &f << endl;
    cout << f << endl;  // same
}