Cod sursa(job #498811)
Utilizator | Data | 6 noiembrie 2010 10:12:46 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.13 kb |
#include<fstream.h>
int main()
{ifstream f("adunare.in");
ofstream g("adunare.out");
long a,b;
f>>a>>b;
g<<a+b;
return 0;
}