Cod sursa(job #612577)
Utilizator | Data | 8 septembrie 2011 20:47:03 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | c | Status | done |
Runda | Arhiva de probleme | Marime | 0.17 kb |
#include < stdio.h >
long a,b;
int main() {
freopen("input.txt","r",stdin);
freopen("output.txt","w",stdout);
scanf("%ld%ld",&a,&b);
printf("%ld",a+b);
return 0;
}