Cod sursa(job #705406)
Utilizator | Data | 4 martie 2012 11:07:45 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.18 kb |
#include<fstream>
using namespace std;
istream f("adunare.in");
ostream g("adunare.out");
int main() {
long long a,b;
f>>a>>b;
g<<a+b;
f.close();
g.close();
return 0;
}