Cod sursa(job #467766)
Utilizator | Data | 30 iunie 2010 14:23:12 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | runda_test | Marime | 0.17 kb |
#include<stdio.h>
long a,b;
int main()
{
freopen("adunare.in","r",stdin);
freopen("adunare.out","w",stdout);
scanf("%ld%ld",&a,&b);
printf("%ld",a+b);
return 0;
}