Cod sursa(job #1157568)
| Utilizator | Data | 28 martie 2014 16:57:46 | |
|---|---|---|---|
| Problema | A+B | Scor | 0 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.2 kb |
#include<iostream>
#include<fstream>
using namespace std;
ifstream f1("adunare.in.txt");
ofstream f2("adunare.out.txt");
main ()
{long long a,b,s;
f1>>a>>b;
s=a+b;
f2<<s;
f2.close();
return 0;
}
