Cod sursa(job #463372)
| Utilizator | Data | 15 iunie 2010 14:47:40 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.24 kb |
#include <cstdio>
using namespace std;
int main()
{
int x, y;
FILE *r, *w;
r = freopen("adunare.in","r",stdin);
w = freopen("adunare.out","w",stdout);
scanf("%d\n%d",&x,&y);
printf("%d",x+y);
fclose(r); fclose(w);
return 0;
}
