Cod sursa(job #984281)
Utilizator | Data | 13 august 2013 23:28:54 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Lista lui wefgef | Marime | 0.21 kb |
#include<stdio.h>
int main()
{long a,b;
freopen("adunare.in","r",stdin);
freopen("adunare.out","w",stdout);
scanf("%d%d",&a,&b);
printf("%d",a+b);
fclose(stdin);
fclose(stdout);
return 0;
}