Cod sursa(job #137860)
| Utilizator | Data | 17 februarie 2008 15:38:22 | |
|---|---|---|---|
| Problema | A+B | Scor | 0 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.14 kb |
#include<fstream.h>
void main()
{
ifstream cin("adunare.in");
ofstream cout("adunare.out");
long a,b;
cin>>a>>b;
cout<<a+b;
}