Cod sursa(job #123912)
| Utilizator | Data | 17 ianuarie 2008 18:06:17 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| 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("adunare.out","w",stdout);
scanf("%ld%ld",&a,&b);
printf("%ld",a+b);
return 0;}