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