Cod sursa(job #304802)
| Utilizator | Data | 15 aprilie 2009 13:31:37 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.21 kb |
#include<iostream>
#include<fstream>
using namespace std;
int main()
{long a,b;
freopen("adunare.in","r",stdin);
freopen("adunare.out","w",stdout);
scanf("%ld %ld",&a,&b);
printf("%ld",a+b);
return 0;
}
