Cod sursa(job #208924)
Utilizator | Data | 19 septembrie 2008 18:38:23 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.17 kb |
#include<stdio.h>
int main()
{
long a,b;
freopen("adunare.in","r",stdin);
freopen("output.out","w",stdout);
scanf("%ld%ld",&a,&b);
printf("%ld",a+b);
return 0;
}