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