Cod sursa(job #1197581)
Utilizator | Data | 12 iunie 2014 19:53:11 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.2 kb |
#include <cstdio>
using namespace std;
long x,y;
int main()
{
freopen("adunare.in","r",stdin);
freopen("adunare.out","w",stdout);
scanf("%d%d",&x,&y);
printf("%d",x+y);
return 0;
}