add.c 73 B

123456
  1. /* add.c */
  2. int add (int first, int second)
  3. {
  4. return first + second;
  5. }