Cod sursa(job #886461)
Utilizator | Data | 22 februarie 2013 21:17:00 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | c | Status | done |
Runda | Arhiva de probleme | Marime | 0.23 kb |
#include <stdio.h>
int main()
{
int a,b;
freopen("adunare.in", "r", stdin);
freopen("adunare.out", "w", stdout);
scanf("%d\n%d", &a, &b);
printf("%d", a+b);
return 0;
}