Cod sursa(job #682730)
| Utilizator | Data | 19 februarie 2012 14:18:35 | |
|---|---|---|---|
| Problema | A+B | Scor | 86 |
| Compilator | cpp | Status | done |
| Runda | penalty_testing1 | Marime | 0.18 kb |
#include <stdio.h>
int main()
{
freopen("adunare.in","rt",stdin);
freopen("adunare.out","wt",stdout);
long a,b;
scanf("%ld\n%ld",&a,&b);
printf("%ld\n",a+b);
return 0;
}