Cod sursa(job #211)
| Utilizator | Data | 7 decembrie 2006 12:04:26 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.18 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",(long long)a+b);
return 0;
}
