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