Cod sursa(job #334705)
Utilizator | Data | 27 iulie 2009 18:15:08 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.17 kb |
#include <stdio.h>
int main()
{
freopen("adunare.in","r",stdin);
freopen("adunare.out","w",stdout);
long a,b;
scanf("%ld%ld",&a,&b);
printf("%ld\n",a+b);
return 0;
}