Cod sursa(job #554298)
Utilizator | Data | 14 martie 2011 19:01:01 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.19 kb |
#include<stdio.h>
long a,b;
int main()
{
freopen("adunare.in","r",stdin);
freopen("adunare.out","w",stdout);
scanf("%ld%ld",&a,&b);
printf("%ld",a+b);
return 0;
}