1#ifndef OTHER_H2#define OTHER_H3 4int add(int a, int b) {5 int first = a;6 int second = b; // thread return breakpoint7 int result = first + second;8 return result;9}10#endif // OTHER_H11