Cod sursa(job #1410127)
Utilizator | Data | 30 martie 2015 21:12:06 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.19 kb |
#include<fstream>
using namespace std;
ifstream fi("adunare.in");
ofstream fo("adunare.out");
long long a,b;
int main()
{
fi>>a>>b;
fo<<a+b;
fi.close();
fo.close();
return 0;
}