Cod sursa(job #2809042)
Utilizator | Data | 25 noiembrie 2021 20:48:33 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp-64 | Status | done |
Runda | Arhiva de probleme | Marime | 0.42 kb |
#include <bits/stdc++.h>
using namespace std;
ifstream fin("adunare.in");
ofstream fout("adunare.out");
void solve()
{
long a, b; fin >> a >> b;
fout << a + b;
}
int main() {
ios_base::sync_with_stdio(0), cin.tie(0), cout.tie(0);
int t = 1; //cin >> t;
while (t--)
{
solve();
}
return 0;
}
/*
ifstream fin("input.in");
ofstream fout("output.out");
*/