Cod sursa(job #1252820)
| Utilizator | Data | 31 octombrie 2014 12:37:14 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | cpp | Status | done |
| Runda | teme_upb | Marime | 0.24 kb |
#include<cstdio>
#include<algorithm>
using namespace std;
int a,b;
int main()
{
freopen("adunare.in","r",stdin);
freopen("adunare.out","w",stdout);
scanf("%d",&a); scanf("%d",&b);
printf("%d\n",a+b);
return 0;
}
