Cod sursa(job #1489993)
Utilizator | Data | 22 septembrie 2015 16:13:16 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | teme_upb | Marime | 0.24 kb |
#include <bits/stdc++.h>
using namespace std;
long long a,b;
int main()
{
freopen("adunare.in","r",stdin);
freopen("adunare.out","w",stdout);
scanf("%lld %lld\n",&a,&b);
printf("%lld\n",a+b);
return 0;
}