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