Cod sursa(job #13219)
| Utilizator | Data | 5 februarie 2007 23:17:03 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.18 kb |
#include<stdio.h>
int main()
{long a,b,c;
freopen("adunare.in","r",stdin);
freopen("adunare.out","w",stdout);
scanf("%ld",&a);
scanf("%ld",&b);
c=a+b;printf("%ld",c);return 0;}