Cod sursa(job #2922823)
Utilizator | Data | 10 septembrie 2022 10:56:00 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp-64 | Status | done |
Runda | Arhiva de probleme | Marime | 0.28 kb |
#include <bits/stdc++.h>
using namespace std;
struct solver
{
solver()
{
int a, b;
ifstream fin("adunare.in");
ofstream fout("adunare.out");
fin>>a>>b;
fout << a+ b;
}
};
solver s;
int main()
{
return 0;
}