Cod sursa(job #1197664)
Utilizator | Data | 13 iunie 2014 09:47:28 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.22 kb |
#include <cstdio>
using namespace std;
int a,b;
int main()
{
freopen ("adunare.in","r",stdin);
freopen ("adunare.out","w",stdout);
scanf ("%d\n%d", &a, &b);
printf ("%d", a+b);
return 0;
}