Cod sursa(job #733218)
Utilizator | Data | 11 aprilie 2012 16:57:04 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | c | Status | done |
Runda | Arhiva de probleme | Marime | 0.2 kb |
#include<iostream.h>
#include<fstream.h>
int main(){
ifstream f("adunare.in");
ofstream g("adunare.out");
long int a,b;
f>>a;
f>>b;
g<<a+b;
f.close();
g.close();
return 0;
}