Cod sursa(job #52553)
| Utilizator | Data | 19 aprilie 2007 11:26:29 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.21 kb |
#include<fstream.h>
int main()
{ long long a,b;
ifstream fin("adunare.in");
ofstream fout("adunare.out");
fin>>a;
fin>>b;
fout<<a+b;
fout.close();
fin.close ();
return 0;
}
