Cod sursa(job #484525)
Utilizator | Data | 14 septembrie 2010 18:08:34 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.27 kb |
#include <stdio.h>
#include <algorithm>
using namespace std;
int main()
{
freopen("adunare.in", "r", stdin);
freopen("adunare.out", "w", stdout);
int a, b;
scanf("%d %d", &a, &b);
printf("%d\n", a + b);
fclose(stdin);
fclose(stdout);
return 0;
}