Cod sursa(job #738521)
| Utilizator | Data | 20 aprilie 2012 18:25:24 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | c | Status | done |
| Runda | teme_upb | Marime | 0.2 kb |
#include <stdio.h>
int main () {
long a,b,c;
freopen("adunare.in","r",stdin);
scanf("%ld%ld",&a,&b);
c = a + b;
fclose(stdin);
freopen("adunare.out","w",stdout);
printf("%ld",c);
return 0;
}
