Cod sursa(job #519127)
Utilizator | Data | 4 ianuarie 2011 01:14:22 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.16 kb |
#include<fstream>
using namespace std;
ifstream fi("adunare.in");
ofstream fo("adunare.out");
int main()
{
long a,b;
fi>>a>>b;
fo<<a+b<<'\n';
return 0;
}