Cod sursa(job #3122290)
Utilizator | Data | 18 aprilie 2023 14:42:12 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp-64 | Status | done |
Runda | Arhiva de probleme | Marime | 0.25 kb |
#include <iostream>
#include <fstream>
using namespace std;
ifstream in("adunare.in");
ofstream out("adunare.out");
int main()
{
int x, y;
in >> x >> y;
out << x + y;
in.close();
out.close();
return 0;
}