1#include "other.h"2 3int main() {4 int first = 5;5 int second = 10;6 const int result = add(first, second);7 8 return 0;9}10