#include "../include/lsort.h" #include "stdio.h" int main(void) { int x = 5; int y = 2; printf("%d + %d = %d\n", x, y, add(x, y)); return 0; }