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