#include<fstream> using namespace std; ifstream in("a+b.in"); ofstream out("a+b.out"); int main() { int a,b; in>>a>>b; out<<a+b; return 0; }