Cod sursa(job #185733)
Utilizator | Data | 25 aprilie 2008 22:41:28 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.2 kb |
#include <stdio.h>
long int a,b;
int main(){
freopen("adunare.in","r",stdin);
freopen("adunare.out","w",stdout);
scanf("%ld",&a); scanf("%ld",&b);
printf("%ld",a+b);
return 0;
}