Cod sursa(job #500413)
| Utilizator | Data | 12 noiembrie 2010 08:45:36 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.2 kb |
#include<cstdio>
using namespace std;
long a,b;
int main()
{
freopen("adunare.in","r",stdin);
freopen("adunare.out","w",stdout);
scanf("%ld%ld",&a,&b);
printf("%ld\n",a+b);
return 0;
}
