Cod sursa(job #118213)
Utilizator | Data | 23 decembrie 2007 17:49:37 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | c | Status | done |
Runda | Arhiva de probleme | Marime | 0.27 kb |
#include <stdio.h>
#define FIN "adunare.in"
#define FOUT "adunare.out"
int main(void)
{
long long a, b;
freopen(FIN, "r", stdin);
freopen(FOUT, "w", stdout);
scanf("%lld%lld", &a, &b);
printf("%lld\n", a + b);
return 0;
}