Cod sursa(job #3165923)
Utilizator | Data | 7 noiembrie 2023 10:20:37 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp-64 | Status | done |
Runda | Arhiva de probleme | Marime | 0.2 kb |
#include <fstream>
#include <algorithm>
using namespace std;
ifstream f("adunare.in");
ofstream g("adunare.out");
int a, b, s;
int main()
{
f>>a;
f>>b;
g>>a+b;
return 0;
}