Cod sursa(job #223546)
| Utilizator | Data | 28 noiembrie 2008 19:31:44 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | c | Status | done |
| Runda | Arhiva de probleme | Marime | 0.19 kb |
#include <stdio.h>
long a,b;
int main()
{
freopen("adunare.in","r",stdin);
scanf("%ld %ld",&a,&b);
freopen("adunare.out","w",stdout);
printf("%ld", a+b);
return 0;
}
