Cod sursa(job #2417641)
Utilizator | Data | 30 aprilie 2019 17:43:12 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp-64 | Status | done |
Runda | Arhiva de probleme | Marime | 0.23 kb |
#include <iostream>
#include <fstream>
using namespace std;
int main()
{
ifstream fin("adunare.in");
int a, b;
fin >> a >> b;
ofstream fout("adunare.out");
fout << a + b;
return 0;
}