Cod sursa(job #472857)
| Utilizator | Data | 26 iulie 2010 20:50:23 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | c | Status | done |
| Runda | Arhiva de probleme | Marime | 0.19 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;
}
