Cod sursa(job #263398)
Utilizator | Data | 20 februarie 2009 12:36:31 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.16 kb |
#include <fstream.h>
ifstream fin("ab.in");
ofstream fout("ab.out");
long a,b;
int main()
{
fin>>a>>b;
fout<<a+b;
fin.close();
fout.close();
return 0;
}