Cod sursa(job #17287)
| Utilizator | Data | 15 februarie 2007 16:43:38 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.18 kb |
#include<stdio.h>
long n,m;
int main()
{
freopen("adunare.in","r",stdin);
freopen("adunare.out","w",stdout);
scanf("%ld %ld",&n,&m);
printf("%ld \n",n+m);
return 0;
}
