foo(int a,int b)1 int foo(int a, int b) { 2 return a + b; // Set breakpoint here 3 } 4 main()5 int main() { 6 return foo(1,3); 7 } 8