Cod sursa(job #394422)
Utilizator | Data | 10 februarie 2010 21:02:54 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.17 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);
}