Cod sursa(job #3139504)
Utilizator | Data | 28 iunie 2023 21:27:54 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp-64 | Status | done |
Runda | Arhiva de probleme | Marime | 0.29 kb |
//test
#include <fstream>
#include <iostream>
using namespace std;
int main()
{
int a = 0, b = 0;
ifstream fin;
fin.open("adunare.in");
ofstream fout;
fout.open("adunare.out");
fin >> a >> b;
fout << a+b << "\n";
fin.close();
fout.close();
return 0;
}