Cod sursa(job #616849)
Utilizator | Data | 13 octombrie 2011 15:26:41 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.15 kb |
#include <fstream.h>
ifstream fin("adunare.in");
ofstream fout("adunare.out");
int main()
{int a,b;
fin>>a>>b;
fout<<a+b;
return 0;
fout.close();
}