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