#include<fstream.h>int main() {int a,b;ifstream f("adunare.in");ofstream g("adunare.out");f>>a>>b;g<<a+b;f.close(); g.close();return 0;}