Cod sursa(job #849304)
| Utilizator | Data | 6 ianuarie 2013 19:47:16 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.38 kb |
# include <cstdio>
# include <cstring>
# include <vector>
using namespace std;
const int MAX = 262144;
int V[MAX];
int a, b;
int main (void) {
freopen ("adunare.in", "r", stdin);
freopen ("adunare.out", "w", stdout);
scanf ("%d %d", &a, &b);
for (int i = 1; i < MAX; ++i)
for (int j = 1; j < 200; ++j)
V[i] = i;
printf ("%d", a + b);
}
