#include <iostream>

int main() {
    int f();
    std::cout << f() << std::endl;
    return 0;
}

int f() {
    return 0;
}