1int foo(int f) {2 int b = f * f; // Break here3 return b;4}5 6int main() {7 int f = foo(42);8 return f;9}10