Cod sursa(job #299591)
Utilizator | Data | 6 aprilie 2009 21:21:20 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.18 kb |
#include<stdio.h>
int main()
{ freopen("suma.in","r",stdin);
freopen("suma.out","w",stdout);
long a,b;
scanf("%d%d",&a,&b);
printf("%d",a+b);
return 0;
}