#include using namespace std; ifstream in ("A+B.in"); ofstream out ("A+B.out"); int main() { int a,b,s; in>>a; in>>b; s=a+b; out<