foo()1 int foo() {
2     return 0;
3 }
4 
main()5 int main()
6 {
7     return foo();
8 }
9