Cod sursa(job #97916)
| Utilizator | Data | 9 noiembrie 2007 14:45:08 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | c | Status | done |
| Runda | Arhiva de probleme | Marime | 0.2 kb |
#include <stdio.h>
int main(void) {
int a, b;
freopen("adunare.in", "rt", stdin);
freopen("adunare.out", "wt", stdout);
scanf("%d%d", &a, &b);
printf("%d\n", a + b);
return 0;
}
