Cod sursa(job #717219)
Utilizator | Data | 19 martie 2012 19:07:02 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.18 kb |
#include <cstdio>
int main () {
freopen ("adunare.in", "r", stdin);
freopen ("adunare.out", "w", stdout);
int a, b;
scanf ("%d %d", &a, &b);
printf ("%d", a+b);
}