Cod sursa(job #295931)
Utilizator | Data | 3 aprilie 2009 19:49:34 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | testx | Marime | 0.13 kb |
#include<fstream.h>
int main(){
long a,b;
ifstream f("adunare.in");
f>>a;
f>>b;
ofstream g("adunare.out");
g<<a+b;
return 0;
}