Cod sursa(job #312622)
Utilizator | Data | 6 mai 2009 19:23:40 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | super_easy | Marime | 0.2 kb |
#include <fstream.h>
long int a, b;
ifstream fin("adunare.in");
ofstream fout("adunare.out");
int main()
{
fin>>a;
fin>>b;
fout<<a+b;
fin.close();
fout.close();
return 0;
}