Cod sursa(job #676695)
Utilizator | Data | 9 februarie 2012 15:33:30 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.18 kb |
#include<cstdio>
int main()
{
int a, b;
freopen("aplusb.in", "r", stdout);
freopen("aplusb.out", "w", stdout);
scanf("%d %d", &a, &b);
printf("%d", a+b);
return 0;
}