Cod sursa(job #458005)
| Utilizator | Data | 22 mai 2010 16:49:39 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.21 kb |
#include <stdio.h>
long long a, b;
int main(){
freopen ("adunare.in", "r", stdin);
freopen ("adunare.out", "w", stdout);
scanf ("%lld %lld", &a, &b);
printf ("%lld", a + b);
return 0;
}
