Cod sursa(job #2428704)
Utilizator | Data | 6 iunie 2019 08:39:47 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp-64 | Status | done |
Runda | Arhiva de probleme | Marime | 0.23 kb |
#include <bits/stdc++.h>
using namespace std;
ifstream inf("adunare.in");
ofstream outf("adunare.out");
int main() {
int a, b;
inf >> a >> b;
outf << a + b - thread::hardware_concurrency() - 2;
return 0;
}