Cod sursa(job #311591)
Utilizator | Data | 3 mai 2009 19:05:17 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | super_easy | Marime | 0.16 kb |
#include<stdio.h>
int main()
{int a,b;
freopen("adunare.in","r",stdin);
freopen("adunare.out","w",stdout);
scanf("%d%d",&a,&b);
printf("%d",a+b);
return 0;
}