#include #include int main(int argc, char const *argv[]) { int a, b; a=atoi(argv[1]); b=atoi(argv[2]); printf("%i\n", a+b); return 0; }