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