#include using namespace std; int main() { ifstream fin("aplusb.txt"); ofstream fout("aplusb.txt"); int a,b; fin >> a >> b; fout << a + b; fin.close(); fout.close(); return 0; }