Cod sursa(job #2057772)
Utilizator | Data | 4 noiembrie 2017 18:56:29 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.32 kb |
#include <bits/stdc++.h>
using namespace std;
inline void Boost() {
ios::sync_with_stdio(false);
cin.tie(NULL); cout.tie(NULL);
}
typedef long long int ll;
typedef long double ld;
ifstream fin("adunare.in");
ofstream fout("adunare.out");
int main() {
Boost();
int a, b;
fin >> a >> b;
fout << a + b;
return 0;
}