Cod sursa(job #2354134)
Utilizator | Data | 24 februarie 2019 21:43:12 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp-64 | Status | done |
Runda | Arhiva de probleme | Marime | 0.36 kb |
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef long double ld;
int main()
{
/// ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0);
freopen("adunare.in","r",stdin);
freopen("adunare.out","w",stdout);
int a,b;
cin>>a>>b;
cout<<a+b<<"\n";
return 0;
}
/**
{1}
**/