Cod sursa(job #294119)
Utilizator | Data | 2 aprilie 2009 12:33:59 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | infoexpert | Marime | 0.21 kb |
#include <iostream.h>
#include <fstream.h>
int main() {
long long a, b;
ifstream f; f.open("adunare.in");
ofstream g; g.open("adunare.out");
f>>a>>b;
g<<a+b;
f.close();
g.close();
return 0;
}