Cod sursa(job #5801)
| Utilizator | Data | 15 ianuarie 2007 09:17:43 | |
|---|---|---|---|
| Problema | A+B | Scor | 0 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.15 kb |
#include <fstream.h>
int main()
{
ifstream fin("adunare.in");
ofstream fout("adunare.out");
long int a,b;
cin>>a>>b;
fout<<a+b;
return 0;
}