Cod sursa(job #212748)
Utilizator | Data | 6 octombrie 2008 19:21:27 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.17 kb |
#include<fstream.h>
int main()
{
long int A,B;
ifstream f("adunare.in");
f>>A>>B;
f.close();
ofstream g("adunare.out");
g<<A+B;
g.close();
return 0;
}