Cod sursa(job #792992)
Utilizator | Data | 1 octombrie 2012 18:37:41 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | c | Status | done |
Runda | Arhiva de probleme | Marime | 0.15 kb |
#include <fstream>
int main()
{
long A,B;
ifstream f("adunare.in");
ofstream g("adunare.out");
f>>A>>B;
g<<A+B;
g.close();
return 0;
}