Cod sursa(job #1096684)
Utilizator | Data | 2 februarie 2014 15:13:18 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.2 kb |
/*
Keep It Simple!
*/
#include <stdio.h>
long long A,B;
int main()
{
freopen("adunare.in","r",stdin);
freopen("adunare.out","w",stdout);
scanf("%lld%lld",&A,&B);
printf("%lld",A+B);
}