#include #include #include using namespace std; int main(int argc, char const *argv[]) { int a, b; string str; ifstream ifs; ifs.open(argv[1]); ifs >> a >> b >> str; cout << a+b << " " << str; return 0; }