#include <bits/stdc++.h>
using namespace std;

int main() {
    auto x = [] {return 1;};
    std::function<int()> y;

    cout << is_same<decltype(x), decltype(y)>::value << endl;
}