1int f(int a,int, int c) {
2    return a + c;
3}
4
5int main() {
6    return f(1,2,3);
7}
8
9