Cod sursa(job #52745)
| Utilizator | Data | 19 aprilie 2007 20:23:09 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.21 kb |
#include <stdio.h>
// Sursa scrisa pe palm
long long a, b;
int main ()
{
freopen("adunare.in","r", stdin);
freopen("adunare.out", "w", stdout);
scanf("%lld %lld", &a, &b);
printf("%lld\n",a+b);
return 0;
}
