Cod sursa(job #900096)
Utilizator | Data | 28 februarie 2013 17:38:54 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.23 kb |
#include <fstream>
using namespace std;
int main()
{ long long a,b;
ifstream f("adunare.in");
ofstream g("adunare.out");
f>>a>>b;
g<<a+b;
g<<"\n";
f.close();
g.close();
return 0;
}