Cod sursa(job #213498)
Utilizator | Data | 9 octombrie 2008 23:01:55 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | c | Status | done |
Runda | Arhiva de probleme | Marime | 0.17 kb |
#include <stdio.h>
int main(void){
int a,b;
freopen("adunare.in","r",stdin);
freopen("adunare.out","w",stdout);
scanf("%u%u",&a,&b);
printf("%u",a+b);
return 0;
}