Cod sursa(job #730176)
| Utilizator | Data | 5 aprilie 2012 19:02:53 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | cpp | Status | done |
| Runda | Lista lui wefgef | Marime | 0.18 kb |
#include <stdio.h>
int main()
{
long a,b;
freopen("adunare.in","r",stdin);
freopen("adunare.out","w",stdout);
scanf("%ld%ld",&a,&b);
printf("%ld\n",a+b);
return 0;
}