#include #include int main(int arc, char **arv) { int a; int b; a = atoi(arv[1]); b = atoi(arv[3]); a +=b; printf("%d",a); return 0; }