#include #include using namespace std; int f(); int main() { cout << f() << "\n"; return EXIT_SUCCESS; } int f() { int i = 10; return i; }