Cod sursa(job #849299)
| Utilizator | Data | 6 ianuarie 2013 19:46:15 | |
|---|---|---|---|
| Problema | A+B | Scor | 0 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.4 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 < 300; ++j)
V[(i + j) & (MAX - 1)] = i;
printf ("%d", a + b);
}
