Cod sursa(job #2280172)
Utilizator | Data | 10 noiembrie 2018 12:28:57 | |
---|---|---|---|
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;
int main()
{
ifstream fin("adunare.in");
ofstream fout("adunare.out");
int a;
fin >> a;
int b;
fin >> b;
fout << a+b << endl;
return 0;
}