Cod sursa(job #1999002)
Utilizator | Data | 9 iulie 2017 22:46:06 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.21 kb |
#include <stdio.h>
int main() {
freopen("adunare.in", "r", stdin);
freopen("adunare.out", "w", stdout);
int a, b;
scanf("%d %d", &a, &b);
printf("%d", a + b);
return 0;
}