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