Cod sursa(job #750842)
Utilizator | Data | 23 mai 2012 13:00:19 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.12 kb |
#include <fstream>
long a,b;
int main () {
ifstream f("adunare.in");
ofstream g("adunare.out");
f>>a>>b;
g<<a+b;
}