Cod sursa(job #2310183)
Utilizator | Data | 30 decembrie 2018 18:51:57 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp-32 | Status | done |
Runda | Arhiva de probleme | Marime | 0.29 kb |
#include<bits/stdc++.h>
using namespace std;
ifstream in("adunare.in");
ofstream out("adunare.out");
typedef long long ll;
int main()
{
cin.tie(0);
ios_base::sync_with_stdio(0);
cout.tie(0);
ll a,b;in>>a>>b;
out<<a+b<<'\n';
return 0;
}