Cod sursa(job #882629)
Utilizator | Data | 19 februarie 2013 11:45:40 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | c | Status | done |
Runda | Lista lui wefgef | Marime | 0.22 kb |
#include<stdio.h>
long long a,b,s;
int main(void)
{
freopen("adunare.in","r",stdin);
freopen("adunare.out","w",stdout);
scanf("%lld",&a);
scanf("%lld",&b);
printf("%lld",a+b);
return 0;
}