Cod sursa(job #498879)
Utilizator | Data | 7 noiembrie 2010 16:25:44 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.19 kb |
#include<stdio.h>
long long a,b,t;
int main(){
freopen("adunare.in","r",stdin);
freopen("adunare.out","w",stdout);
scanf("%ld%ld",&a,&b);
t=a+b;
printf("%ld\n",t);
return(0);
}