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