Cod sursa(job #849285)
| Utilizator | Data | 6 ianuarie 2013 19:41:41 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.33 kb |
# include <cstdio>
# include <cstring>
# include <vector>
using namespace std;
int V[300000];
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 < 300000; ++i)
V[i] = i;
printf ("%d", a + b);
}
