Cod sursa(job #451101)
Utilizator | Data | 9 mai 2010 00:14:12 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | c | Status | done |
Runda | teme_upb | Marime | 0.22 kb |
#include <stdio.h>
int main(){
int a,b;
freopen("adunare.in","r",stdin);
freopen("adunare.out","w",stdout);
scanf("%d",&a);
scanf("%d",&b);
printf("%d",a+b);
fclose(stdin);
fclose(stdout);
return 0;
}