#include #include #include using namespace std; int main() { ifstream f("input"); int a,b; f>>a>>b; printf("%d",a+b); f.close(); }