Cod sursa(job #902809)
Utilizator | Data | 1 martie 2013 16:51:51 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | teme_upb | Marime | 0.26 kb |
#include <cstdio>
using namespace std;
long int a,b;
int main()
{
freopen ("adunare.in","r",stdin);
freopen ("adunare.out","w",stdout);
scanf("%d%d",&a,&b);
printf("%d\n",a+b);
fclose(stdin);
fclose(stdout);
return 0;
}