Cod sursa(job #97518)
Utilizator | Data | 7 noiembrie 2007 12:56:51 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.19 kb |
#include <stdio.h>
int main() {
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;
}