Cod sursa(job #102733)
Utilizator | Data | 14 noiembrie 2007 17:48:56 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.2 kb |
#include<stdio.h>
int main()
{
freopen("adunare.in","r",stdin);
freopen("adunare.out","w",stdout);
long long unsigned a,b;
scanf("%llu%llu",&a,&b);
printf("%llu",a+b);
return 0;
}