Cod sursa(job #913645)
Utilizator | Data | 13 martie 2013 17:36:17 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Lista lui wefgef | Marime | 0.2 kb |
#include<cstdio>
using namespace std;
int main ()
{
int a,b;
freopen("adunare.in","r",stdin);
freopen("adunare.out","w",stdout);
scanf("%d%d",&a,&b);
printf("%d\n",a+b);
return 0;
}