Cod sursa(job #1007610)
Utilizator | Data | 9 octombrie 2013 12:19:17 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | c | Status | done |
Runda | Arhiva de probleme | Marime | 0.17 kb |
#include <stdio.h>
int main()
{
int x,y;
freopen("adunare.in","r", stdin);
freopen("adunare.out","w",stdout);
scanf("%d %d",&x,&y);
printf("%d\n",x + y);
return 0;
}